Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Another pair shows that independently changing the value of b affects the value of the complete decision:

idabca && (b || c)
1truetruefalsetrue
3truefalsefalsefalse

This means that our test cases proved that a and b independently affect the value of the complete decision. In terms of MC/DC coverage, they are covered and the c condition is not covered.

...