When using the White Box testing method called multiple condition coverage, do we accept all conditional statements or only those that have multiple conditions? Now, perhaps, there are clues in the title, but I'm not sure.
So, if I have the following method
void someMethod() { if(a && b && (c || (d && e)) )
Am I generating a truth table only for "Conditional A", or am I also executing conditional B?
Thanks,
source share