LCOV - code coverage report | |||||||||||||||||||||||||||||
![]() | |||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||
![]() |
Branch data Line data Source code 1 : : #include "lib/lib.hpp" 2 : : 3 : : #include <algorithm> 4 : : #include <cctype> 5 : : #include <string> 6 : : 7 : : namespace lib { 8 : 3 : std::string Lib::createUpperString(std::string string) const { 9 : 3 : std::transform(cbegin(string), cend(string), begin(string), ::toupper); 10 : 3 : return string; 11 : : } 12 : : } // namespace lib |
![]() |
Generated by: LCOV version 2.0-1 |