Multiple Condition Coverage Testing -


When using the white box method of testing called Multiple Condition coverage, do we take all conditional statements or just more than one Having the conditions? Now maybe leads to the name but I'm not sure.

So if I have the following method

  cancel some method (if (A & amp; B & amp; amp; (C) (D & A) E) // conditional A {} if (z & amp; amp; q) // conditional B {}}  

Do I just have the truth for "conditional A" Generate table or do I do conditional b?

Thanks,

I'm probably missing something here, but the way you wrote the code in your question, A and B are completely You will not cover all the code unless you test both the conditions.


Comments