0
734views
Software Testing Fundamentals
1 Answer
0
1views

Tests can be conducted based on two approaches –

  • Functionality testing

  • Implementation testing

When functionality is being tested without taking the actual implementation in concern it is known as black-box testing. The other side is known as white-box testing where not only functionality is tested but the way it is implemented is also analyzed.

Exhaustive tests are the best-desired method for a perfect testing. Every single possible value in the range of the input and output values is tested. It is not possible to test each and every value in real world scenario if the range of values is large.

Please log in to add an answer.