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. |
|