+ 7
Understanding testing 😃
Traditionally we have two broad approaches to software testing: ● Black-box testing ● White-box testing Black-box testing treats the software as a black box, focusing soles y on inputs and outputs. Whit this aproach any knowledge of internal System workings is not used during testing In contrast, Whit White-box testing, testers use their knowledge of System internals when testing the System. In White-box testing, the testers have acces to the source code.
2 Respostas
+ 7
thanks for the info.....:D
+ 6
Also, we have different levels of testing that are plowed in different parts of software development
●Unit testing
●Integration testing
●System testing
●acceptance testing
●regression testing
In another post I will explain