InterviewSolution
| 1. |
What is black-box testing? |
|
Answer» In black-box testing, the tester views the software as a black box, ignoring all the internal structure and behavior. Their only concern is the input provided to the system and the generated output. Black-box testing verifies the program’s behavior against the specified requirements. During black-box testing, the TEST conditions are created based upon the software’s functionality but are unaware of how the software works internally. The software is tested from the end user’s perspective and gives a BROADER picture of the whole system. Given that the users are only concerned with whether the software works according to their NEEDS and don’t care how it works, black-box testing helps test software USABILITY and anticipate how the customer will use the product. |
|