here is an example:
<target name="testall" depends="jars,_inittest">
<junit printsummary="yes" fork="yes" haltonfailure="no">
<formatter type="plain" />
<test name="alltests.AllTests"
outfile="${reports}/all" />
<classpath refid="testPath"/>
</junit>
</target>
-----Urspr�ngliche Nachricht-----
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Gesendet am: Dienstag, 22. Mai 2001 14:50
An: [EMAIL PROTECTED]
Betreff: JUnit output
I could have sworn, that I once was using the JUnit task, and it would
generate
output where it listed each test (method) and the time it took to execute.
I'm
trying to figure out how I did it. There were not intermediate lines
between
testCases, I think...
I can do this where it is by TestCase, but not by test.
David Corbin