Mutation Score - CI/CD用語集の定義
Mutation scoreは、意図的に導入されたコードの欠陥(mutant)のうち、テストスイートが検出(kill)する割合です。実行のみを測定するカバレッジとは異なり、テストがバグを捉えるうえでどれだけ効果的かを測定します。
関連ガイド
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…