JUnit Question:
Download Job Interview Questions and Answers PDF
How To Run a JUnit Test Class?
Answer:
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.
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.
Download JUnit Interview Questions And Answers
PDF
Previous Question | Next Question |
How To Compile a JUnit Test Class? | What CLASSPATH Settings Are Needed to Run JUnit? |