InterviewSolution
Saved Bookmarks
| 1. |
Which one of the following is not an annotation used by Junit with Junit4?(a) @Test(b) @BeforeClass(c) @AfterClass(d) @Ignored |
|
Answer» Correct answer is (d) @Ignored Explanation: @Test, @Before, @BeforeClass, @After, @AfterClass and @Ignores are the annotations used by Junit with Junit4. |
|