InterviewSolution
Saved Bookmarks
| 1. |
How Should We Ignore Or Avoid Executing Set Of Tests ? |
|
Answer» We can remove @Test from the respective test so as to AVOID its EXECUTION. Alternatively we can PUT @Ignore annotation on the Junit FILE if we want to ignore all tests in a particular file. We can remove @Test from the respective test so as to avoid its execution. Alternatively we can put @Ignore annotation on the Junit file if we want to ignore all tests in a particular file. |
|