How To Run a JUnit Test Class

Q

How To Run a JUnit Test Class?

✍: FYICenter.com QA Team

A

A JUnit test class usually contains a number of test methods. You can run all test methods in a JUnit test class with the JUnitCore runner class. For example, to run the test class HelloTest.java described previously, you should do this:

java -cp .;junit-4.4.jar org.junit.runner.JUnitCore HelloTest

JUnit version 4.4
.
Time: 0.015

OK (1 test)

This output says that 1 tests performed and passed.

2008-01-15, 6707👍, 0💬