I have some JUnit tests which print informations to System.out.
If I run them through the <JUnit> task they run fine but I don't
see the output anywhere. Where does it go?
Here's the relevant part of my build.xml:

  <junit printsummary="true">
   <classpath refid="cp"/>
   <formatter type="xml"/>
   <batchtest todir="${test.results.dir}">
    <fileset dir="${test.classes.dir}" includes="**/*Test*"/>
   </batchtest>
  </junit>
  <junitreport todir="${test.results.dir}">
   <fileset dir="${test.results.dir}" includes="TEST-*.xml"/>
   <report format="noframes" todir="${test.results.dir}"/>
  </junitreport>


Reply via email to