When discussing code coverage, two of the most common metrics are line coverage and branch coverage. While both are important, they measure different aspects of how thoroughly your code is tested.
Line coverage (also called statement coverage) is the most basic and commonly used code coverage metric. It measures the percentage of executable lines of code that are executed when your tests run.
Line Coverage = (Number of Lines Executed / Total Number of Executable Lines) × 100%
Advantages:
Limitations:
Branch coverage measures whether each possible branch from a decision point has been executed. For example, in an if-else statement, branch coverage would require tests that execute both the "if" and the "else" paths.
Branch Coverage = (Number of Branches Executed / Total Number of Branches) × 100%
Advantages:
Limitations:
Consider this PHP code snippet:
function getDiscount($amount, $isVIP) {
$discount = 0; // Line 1
if ($amount > 100 && $isVIP) { // Line 2
$discount = 0.2; // Line 3
} else if ($amount > 100) { // Line 4
$discount = 0.1; // Line 5
}
return $discount; // Line 6
}
A test that calls getDiscount(150, true)
would execute lines 1, 2, 3, and 6, giving a line coverage of 4/6 = 66.7%. However, it would only cover 1 of 3 branches (the first condition being true), giving a branch coverage of only 33.3%.
To achieve 100% branch coverage, you would need additional tests like getDiscount(150, false)
and getDiscount(50, false)
.
Ideally, you should track both line and branch coverage:
Many coverage tools report both metrics, and some also provide more advanced measurements like path coverage or condition coverage for even more thorough testing.
OtterWise helps you track these coverage metrics over time, ensuring your test suite remains comprehensive as your codebase evolves.
With OtterWise, you can track Code Coverage, contributor stats, code health, and much more.