InterviewSolution
Saved Bookmarks
| 1. |
Explain how does a test coverage tool work? |
|
Answer» When software is being tested, the code coverage measures how much of the program's source code is covered by the test plan. Code coverage testing runs in parallel with actual product testing. Using the code coverage tool, you can monitor the execution of statements in your source code. A complete report of the pending statements, along with the coverage percentage, is provided at the end of the final testing. |
|