Branch Coverage - CI/CD用語集の定義
Branch coverageは、テストによって実行された条件分岐(すべてのif、&&、三項演算子の各側)の割合を報告します。true・false両方のパスに到達する必要があるため、statementカバレッジよりも厳格です。
関連ガイド
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…