InterviewSolution
Saved Bookmarks
| 1. |
What Is A Test Suite? |
|
Answer» Test suite means BUNDLE a few unit test cases and RUN it TOGETHER. In JUNIT, both @RunWith and @Suite annotation are used to run the suite test. Test suite means bundle a few unit test cases and run it together. In JUnit, both @RunWith and @Suite annotation are used to run the suite test. |
|