Hi everyone my question is not about programming. Rather it is on software development plans. Can someone explain these 2 to me am getting a bit of confusion:
White box testing
Blackbox testing
Also it would be appreciated if someone gives me some examples about these two. Thanks.
White box testing is the name of the united tests like Junit (Framework). This type of testing check internal structures and workings of your code.
Blackbox testing is the name that receive functional test like Automated Blackboxing Testing (Framework) ; analyzed the functionality of the code but not its structure.
Hope it helps!