Multiple choice technology testing

Condition coverage checks each of the ways that the condition can be made true or false. True or False

  1. True

  2. False

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

Condition coverage is a white-box testing technique that ensures each boolean condition in a decision point is tested for both true and false outcomes. This is stronger than branch coverage as it exercises individual conditions within compound boolean expressions.