InterviewSolution
Saved Bookmarks
| 1. |
What Is The Purpose Of @test Annotation In Junit? |
|
Answer» The TEST annotation tells JUNIT that the public VOID method to which it is attached can be run as a test CASE. The Test annotation tells JUnit that the public void method to which it is attached can be run as a test case. |
|