Oh:
I also forgot to include the command that you need to run.
java -cp
.;TestTools\emma.jar TestTools.SwingRobot CircleConverter CircleTest.rsf
Basically, however the directory is set up, emma.jar needs to be the last thing in the class path. Then just run your Junit tests like normal. In fact, if Brian could run all of ours, just run them all in succession and all the data will be merged.
Then to get the print out
java -cp
TestTools\emma.jar emma report -r html -in coverage.em -in coverage.ec
-sp .
Check the file name in the directory to see if they actually are coverage.em and
coverage.ec.
This will make a coverage folder where the index.html is all our classes seen as one class and then there is another colder in that one that has all our class separated so we can see how much of each method is being used.
--
Terence