PART 1) Install Java

JUnit is a Testing framework used to test Java based application. So before installing JUnit, you need to configure or verify java development kit (JDK) in your machine. Click this tutorial to download and install Java

PART 2) Download JUnit

Step 1) Visit https://junit.org/junit4/ and click Download and Install

Step 2) Click junit.jar

Step 3) In the central repository you are shown all versions of Junit that can be downloaded. Usually, you will select the latest version. Click on jar link to download Junit version 4.12 as shown below

Step 4) Visit https://github.com/junit-team/junit4/wiki/Download-and-Install again. Click hamcrest-core.jar

Step 5) Download the Jar

For JUnit installation, you need JUnit jars, and you can download the desired version of JUnit jar file from JUnit official youbsite http://www.junit.org Here is the jars list:

JUnit.jar hamcrest-core.jar

PART 3) JUnit Environment Setup

Step 1) You need to set JUNIT_HOME environment variable to point out the base location where you have placed JUnit Jars. For example, if you have created a JUnit folder in c: drive and placed jars there, then for environment settings you need to open control panel ->advanced ->environment variable.

Under environment window clicks on “new” button.

When you click on new button in environment variables, it will open another window Step 2) A “New System Variable” window will open:

Provide variable name as “JUNIT_HOME”. Provide JUnit value as JUnit path where you have copied JUnit jar files. Click on OK.

When you click on OK, it will create a new system variable with the given name and value. Which you can verify in environment variable window as shown in step 1 image. Step 3) After creating JUNIT_HOME, create another variable with the name CLASSPATH. Again go to Environment Variables and follow the below steps.

Click on “new” button. When you click on new in environment variables, it will open another window.

Step 4) In this step, point out JUNIT_HOME to JUnit.jar which is placed in JUnit folder as given below:

Variable Name: CLASSPATH Variable Value: %CLASSPATH%;%JUNIT_HOME%\JUnit4.10.jar;.; Click on the OK button.

Step 5) Once you click on the ‘OK’ button, you can verify that a new environment variable named “CLASSPATH” can be seen under system variable. See below

PART 4) Install JUnit jar file in eclipse

Step 1) Right click on project:

Click on “build path” and then Click on “Configure build path”.

Step 2) In this step,

Go to java build path window as shown in below figure Now click on “Add External JARs” button to add your downloaded JUnit.jar file with eclipse.

After adding a JUnit.jar file, click on ‘OK’ button to close java build path window.

Part 5) Verifying whether required jar file for JUnit is in my build path

In order to verify JUnit jar file in eclipse, you need to follow below-mentioned steps:

Right click on project -> Build Path Click on “Configure build path”.

Step 2) Java build path window will appear as shown below. In that window, go to Libraries tab to see all jar files. In jar file tree view, you need to look for the jar file name which is starting with JUnit. Once you expand JUnit libraries, you can see java libraries as shown below:

Now you are ready to use JUnit with eclipse.

PART 6) Verify JUnit setup

You can create a simple JUnit test to verify JUnit setup. See below test class: Step 1) Create a java class named TestJUnit.java and provide a simple assert statement.

Step 2) Create a Test Runner class to execute above test.

Step 3) To execute the test, follow below steps:

Right click on TestJunit.java and click on “Run As” as shown below Another window will be open once you click on “Run As”, click on “1 JUnit Test” as shown below:

Step 4) Here is the output or result for your test. If it is successfully executed, it will show a green check mark in front of it.

Click to download the above code for your testing purposes.