GCC Code Coverage Report


Directory: ./
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 80.0% 4 / 0 / 5
Functions: 100.0% 1 / 0 / 1
Branches: 50.0% 1 / 0 / 2

lib/lib.cpp
Line Branch Exec Source
1 #include <iostream>
2
3 1 int print(int test)
4 {
5
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 time.
1 if ( ! test )
6 1 return 1;
7 else
8 return 2;
9 1 }
10