Branch Coverage - CI/CD Glossary Definition
Branch coverage reports the fraction of conditional branches (each side of every if, &&, ternary) executed by tests; it is stricter than statement coverage because it requires hitting both true and false paths.
Related guides
Code Coverage Threshold - CI/CD Glossary DefinitionA code coverage threshold is a minimum coverage percentage CI enforces, failing the build when tests exercise…
Mutation Score - CI/CD Glossary DefinitionMutation score measures test quality by injecting small code changes and checking how many your tests catch -…
Property-Based Testing - CI/CD Glossary DefinitionProperty-based testing generates many random inputs and checks that a stated property always holds, finding e…