JUnit Question: Download JUnit PDF

How To Compile a JUnit Test Class?

Tweet Share WhatsApp

Answer:

Compiling a JUnit test class is like compiling any other Java classes. The only thing you need watch out is that the JUnit JAR file must be included in the classpath. For example, to compile the test class HelloTest.java described previously, you should do this:

javac -cp junit-4.4.jar HelloTest.java

dir HelloTest.*
453 HelloTest.class
183 HelloTest.java

The compilation is ok, if you see the HelloTest.class file.

Download JUnit PDF Read All 45 JUnit Questions
Previous QuestionNext Question
How To Wirte a Simple JUnit Test Class?How To Run a JUnit Test Class?