Code Coverage Threshold - CI/CD用語集の定義
Code coverage thresholdは、測定されたカバレッジがそれを下回るとCIを失敗させる、設定された最小値(グローバルまたはファイル単位)であり、時間とともにテストされていないコードが忍び込むのを防ぐガードレールとして機能します。
関連ガイド
Branch Coverage - CI/CD Glossary DefinitionBranch coverage measures whether tests exercise both outcomes of each decision point, catching untested else-…
Mutation Score - CI/CD Glossary DefinitionMutation score measures test quality by injecting small code changes and checking how many your tests catch -…
Regression Suite - CI/CD Glossary DefinitionA regression suite is the body of tests that guard against previously fixed bugs reappearing, run on every ch…