In white-box testing, which technique involves ensuring that every decision point (true and false) has been executed at least once?

  • Cyclomatic Complexity
  • Decision Coverage
  • Path Coverage
  • Statement Coverage
Decision Coverage in white-box testing ensures that each decision point or branch has been executed for both 'true' and 'false' conditions. It is more robust than simple statement coverage because it ensures that each decision leads the control flow in both directions.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *