InterviewSolution
| 1. |
Types Of Software Testing? |
|
Answer» Software Testing can be divided into two parts: Black box testing which is high level and does not take into account the internal workings of the software, i.e. the tester doesn’t need to know how each individual components INTERACT with each other. White box testing which TESTS at very LOW levels, e.g. functions within a class or COMPONENT integration. System Testing is an example of a Black Box Testing, and Unit Testing is an example of white box testing. Software Testing can be divided into two parts: Black box testing which is high level and does not take into account the internal workings of the software, i.e. the tester doesn’t need to know how each individual components interact with each other. White box testing which tests at very low levels, e.g. functions within a class or component integration. System Testing is an example of a Black Box Testing, and Unit Testing is an example of white box testing. |
|