Software-testing-dictionary-decision-coverage-testing

提供:Dev Guides
移動先:案内検索

意思決定カバレッジテスト

意思決定カバレッジテストとは何ですか?

決定カバレッジまたはブランチカバレッジは、各決定ポイントからの可能なブランチのそれぞれが少なくとも1回実行され、それによって到達可能なすべてのコードが実行されることを保証することを目的とするテスト方法です。

つまり、すべての決定は、真と偽のそれぞれの方法で行われます。 コード内のすべてのブランチを検証して、アプリケーションの異常な動作につながるブランチがないことを確認するのに役立ちます。

例:

Read A
Read B
IF A+B > 10 THEN
  Print "A+B is Large"
ENDIF
If A > 5 THEN
  Print "A Large"
ENDIF

上記のロジックは、フローチャートで次のように表すことができます。

テストライフサイクルでの意思決定テスト

結果:

To calculate Branch  Coverage, one has to find out the minimum number of paths which will ensure that all the edges are covered. In this case there is no single path which will ensure coverage of  all the edges at once. The aim is to cover all possible true/false decisions.
(1) 1A-2C-3D-E-4G-5H
(2) 1A-2B-E-4F
Hence Decision or Branch Coverage is 2.