InterviewSolution
Saved Bookmarks
| 1. |
What is Test Harness and Test Closure? |
|
Answer» Test Harness: Test harness, also known as the automated test framework, is a collection of software and test data required to UNIT test software modules during development. It is mostly used by the developers and helps in the automation and EXECUTION of unit test CASES. It generally includes two main parts as given below:
Test Closure: Test closure is basically a document that provides the summary of all the tests that are performed during SDLC. It gives full detailed analysis REPORTS of the bugs that are discovered and removed. It is USUALLY performed prior to the end of the testing process. |
|