You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

junitreport.xml 999B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- You may freely edit this file. See commented blocks below for -->
  3. <!-- some examples of how to customize the build. -->
  4. <!-- (If you delete it and reopen the project it will be recreated.) -->
  5. <project name="DMDirc" default="default" basedir=".">
  6. <description>Builds, tests, and runs the project DMDirc.</description>
  7. <import file="nbproject/build-impl.xml"/>
  8. <property file="nbproject/project.properties"/>
  9. <property name="test.reports" value="./junitreports" />
  10. <target name="test-html" depends="compile-test,test" />
  11. <target name="-post-test-run">
  12. <!-- <target name="test-html" depends="compile-test,test"> -->
  13. <junitreport todir="${test.reports}">
  14. <fileset dir="${build.test.results.dir}">
  15. <include name="TEST-*.xml" />
  16. </fileset>
  17. <report todir="${test.reports}" />
  18. </junitreport>
  19. <fail if="tests.failed">Some tests failed; see details above.</fail>
  20. </target>
  21. </project>