InterviewSolution
Saved Bookmarks
| 1. |
________________ is a measure used to describe the degree to which the source code of a program is executed when a particular test suite runs.(a) Code Conduct(b) Code Coverage(c) Mutation Coverage(d) Mutation RedundancyI had been asked this question in class test.The above asked question is from Stubbing a Web Server’s Resources in section Coarse-grained Testing with Stubs of JUnit |
|
Answer» RIGHT option is (b) CODE COVERAGE Explanation: Code coverage checks the PERCENTAGE of the source code that is executed during testing by test data. |
|