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
...
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,
...
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 ...
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...