InterviewSolution
Saved Bookmarks
| 1. |
What is a test suite? |
|
Answer» A test suite is a bundle of multiple UNIT test cases which can be run TOGETHER. The following image represents how to test suite LOOKS like: We can use @RunWith and @Suite ANNOTATIONS over the test class for running the test suite. |
|