LCOV - code coverage report | |||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||
Branch data Line data Source code 1 : : #include "mymath.h" 2 : : 3 : : 4 : 2 : MyMath::MyMath() 5 : : { 6 : 2 : } 7 : : 8 : 2 : int MyMath::abs(int x) 9 : : { 10 [ + + ]: 2 : if (x > 0){ 11 : : return x; 12 : : } else { 13 : 1 : return -x; 14 : : } 15 : : } 16 : : 17 : 0 : int MyMath::diff(int a, int b) 18 : : { 19 : 0 : return a-b; 20 : : } |
Generated by: LCOV version 1.12 |