- Add the Junit4 libraries to your class path.
- Update the test class using @RunWith(JUnit4.class) annotation.
- In Eclipse open Run Configuration and select "Test Runner" as "Junit4" before running the test.
Sample class:
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class testPracticalNotes extends TestCase {
.......
.......
}
No comments:
Post a Comment