Importing junit.jar
by
on 05-21-2011 at 10:52 PM (49 Views)
Before you start writing unit tests, you must import junit.jar, so we have access to the testing framework. Follow these steps to import the required jar:
- Right-click on the project name, and choose Properties.
- In the tree on the left, select Java Build Path.
- Next, choose Add External JARs� and browse to find junit.jar.
It will be located in "<eclipsedir>\plugins\org.junit_<version number>\junit.jar".
Once you successfully import junit.jar, close the Properties page.
Now you are ready to write your test cases.