+ 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 Answers
+ 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