Multiple choice technology testing

Which of the following is NOT true of test coverage criteria?

  1. Test coverage criteria can be measured in terms of items exercised by a test suite.

  2. A measure of test coverage criteria is the percentage of user requirements covered.

  3. A measure of test coverage criteria is the percentage of faults found.

  4. Test coverage criteria are often used when specifying test completion criteria.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Test coverage criteria measure the extent to which test exercises specific structural elements (statements, branches, paths, requirements). Options A, B, and D describe valid coverage measurements: items exercised by tests, percentage of user requirements covered, and completion criteria. Percentage of faults found (C) is NOT a test coverage criterion - it measures test effectiveness, not coverage. Coverage is about what's tested, not what's found.