Talk:CSC/ECE 517 Fall 2009/wiki1a 1 JunitTest
Step 1: Installing JUnit
1. Download latest version of JUnit from http://sourceforge.net/projects/junit/files/ referred as “referred to below as junit.zip”. 2. Then install JUnit on your platform of choice: Windows To install JUnit on Windows, follow these steps: 1. Unzip the junit.zip distribution file to a directory referred to as %JUNIT_HOME%. 2. Add JUnit to the classpath: set CLASSPATH=%JUNIT_HOME%\junit.jar Unix (bash) To install JUnit on Unix, follow these steps: 1. Unzip the junit.zip distribution file to a directory referred to as $JUNIT_HOME. 2. Add JUnit to the classpath: export CLASSPATH=$JUNIT_HOME/junit.jar