white-box-testing

Multiple Condition Coverage Testing

Hi Folks, When using the White Box method of testing called Multiple Condition Coverage, do we take all conditional statements or just the ones with multiple conditions? Now maybe the clues in the name but I'm not sure. So if I have the following method void someMethod() { if(a && b && (c || (d && e)) ) //Conditional A ...

Disadvantage of White Box Testing?

Hi Folks, Can you think of any disadvantages of White Box testing - other that the tester needs to know and understand the code (which may have a cost)? Thanks, ...

Errors caught by WBT, but not BBT and vice versa

Hi Folks, Can you think of one type of error that might be found using White-Box testing, and one type using Black-Box testing. i.e. an error that would be found by one and not the other. For WBT there would null else statements, but what would you catch with BBT and not WBT??? BTW this question is just based on my own personal study ...

Questions on WhiteBox testing, ON-Units, Condition-Coverage

I am reading a book where I am getting stuck at few white box testing concepts. The article in the below link is taken exactly from the book. http://testdesigners.com/testingstyles/ControlFlowTesting.html 1. 'ON-Units' terminology is introduced first in the 'Decision Coverage' article without describing what it is. The article continue...