Path Coverage - CI/CD Glossary Definition
Path coverage measures the percentage of distinct execution paths through a function that were tested, the strictest common coverage metric.
Caveat
The number of paths grows combinatorially with branches, so full path coverage is usually impractical for non-trivial code.
Related guides
Branch Coverage - CI/CD Glossary DefinitionBranch Coverage: Branch coverage is the percentage of decision outcomes (each true and false edge of every `i…
Cyclomatic Complexity - CI/CD Glossary DefinitionCyclomatic Complexity: Cyclomatic complexity is a metric, defined by Thomas McCabe, that counts the number of…