Step 5: Set CLASSPATH variable has an error.
The tutorial has semi-colons between the separators. They should be colons.
Incorrect:
- Code: Select all
Linux export CLASSPATH=$CLASSPATH;$JUNIT_HOME/junit4.10.jar;.;
Correct:
- Code: Select all
Linux export CLASSPATH=$CLASSPATH:$JUNIT_HOME/junit4.10.jar:.:
I suspect the Mac example is wrong as well since the command environment is based on Unix.