1
2This directory contains a set of tests written in Java run by JUnit.  To be
3able to run them you must first set the following environment variables.
4
5example sh:
6JUNIT_JAR="$HOME/tools/junit3.8.1/junit.jar"
7export JUNIT_JAR
8XMLAPI_JAR="$HOME/tools/ant/lib/xml-apis.jar"
9export XMLAPI_JAR
10XMLIMPL_JAR="$HOME/tools/ant/lib/xercesImpl.jar"
11export XMLIMPL_JAR
12
13example csh:
14setenv JUNIT_JAR $HOME/tools/junit3.8.1/junit.jar
15setenv XMLAPI_JAR $HOME/tools/ant/lib/xml-apis.jar
16setenv XMLIMPL_JAR $HOME/tools/ant/lib/xercesImpl.jar
17