Mutation Score - CI/CD Glossary Definition
A mutation score is the fraction of deliberately introduced code faults (mutants) that a test suite detects (kills); it measures how effective tests are at catching bugs, unlike coverage which only measures execution.
Related guides
Property-Based Testing - CI/CD Glossary DefinitionProperty-based testing generates many random inputs and checks that a stated property always holds, finding e…
Branch Coverage - CI/CD Glossary DefinitionBranch coverage measures whether tests exercise both outcomes of each decision point, catching untested else-…
Code Coverage Threshold - CI/CD Glossary DefinitionA code coverage threshold is a minimum coverage percentage CI enforces, failing the build when tests exercise…