| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Fitnesse
Revision: 316
Author: deanwampler
Date: 14 Aug 2008 21:55:36
Changes:Diff:| ... | ...@@ -0,0 +1,15 @@ | |
| 1 | #!/bin/bash | |
| 2 | # Run Testability Explorer V1.2 on FitNesse. Build fitnesse first. | |
| 3 | # Download it from http://code.google.com/p/testability-explorer/ | |
| 4 | # Define $TESTABILITY_EXPLORER_HOME to point to the installation location. | |
| 5 | # Options: | |
| 6 | # -print (html|detail) | |
| 7 | # See also options documented in the TE readme. | |
| 8 | ||
| 9 | classpath=classes:dist/fitnesse/fitlibrary.jar:lib/easymock.jar:lib/junit.jar | |
| 10 | # for jar in lib/*.jar | |
| 11 | # do | |
| 12 | # test -s $jar && classpath=$classpath:$jar | |
| 13 | # done | |
| 14 | echo "Invoking: java -jar $TESTABILITY_EXPLORER_HOME/testability-explorer-1.2.0-r54.jar -cp $classpath fitnesse $@" 1>&2 | |
| 15 | java -jar $TESTABILITY_EXPLORER_HOME/testability-explorer-1.2.0-r54.jar -cp $classpath fitnesse "$@" |