Hi, I'm using Ant 1.6.5 with Eclipse 3.4 (Win XP), JRE 1.5. I run a particular JUnit task that fails, but I can't figure out which test within my JUnit TestCase class is failing. Here's my task ...
<target name="run-delete-add-test" depends="build-tests"> <junit dir="${build}" fork="true" haltonfailure="true" printsummary="on" showoutput="true"> <classpath> <path refid="project.class.path"/> <pathelement path="${java.class.path}"/> <pathelement path="${dist}/cedarpointpooledclient.jar"/> <pathelement path="${build}"/> </classpath> <test name="DeleteAddSubscriberTest" todir="${docs}" outfile="junit.delete.add.result"> <formatter type="xml"/> </test> </junit> </target> but all that is output to my Eclipse console is run-delete-add-test: [junit] Running DeleteAddSubscriberTest [junit] Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 2.156 sec BUILD FAILED C:\Temp\CedarPoint_Service\build-junit-test.xml:105: Test DeleteAddSubscriberTest failed How can I get more detailed information about what is going wrong? There are 8 tests within the DeleteAddSubscriberTest class. Thanks, - Dave --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]