行カバレッジ - CI/CD用語集の定義
行カバレッジは、実行可能なソース行のうち、テストスイートによって少なくとも1回実行された行の割合です。
違い
行カバレッジは実行された行を数えます。分岐カバレッジはさらに、各判定の真と偽の両側が通ったことを確認します。
関連ガイド
Test Coverage - CI/CD Glossary DefinitionTest Coverage: Test coverage measures how much of the codebase is exercised by the test suite, expressed as a…
Branch Coverage - CI/CD Glossary DefinitionBranch Coverage: Branch coverage is the percentage of decision outcomes (each true and false edge of every `i…