Publish JUnit Report

You are viewing an old version (v. 2) of this page.
The latest version is v. 4, last edited on Jun 10, 2010 (view differences | )
<< View previous version | view page history | view next version >>

To publish JUnit report, you only need two steps:

  1. Generate JUnit XML report from Ant or Maven or any other build tool.
  2. Add a JUnit report publish step by choosing Publish -> Junit Report in step menu.

Generate JUnit Report

QuickBuild will NOT generate JUnit report automatically, so first make sure the JUnit report is produced by ANT or by any other build tool. The following example shows how to generate JUnit test results with Ant JUnit task and aggregate all the test reports into one by using Ant JUnitReport task (this is not required):

JUnit target in build.xml
<target name="junit" depends="compile.test">
    <mkdir dir="${junit.report.dir}" />
    <mkdir dir="${junit.report.dir}/test-out" />
    <record name="${junit.report.dir}/test-output.txt" append="no" action="start"/>
    <junit printsummary="yes" haltonfailure="false" fork="yes">
        <classpath refid="test.classpath"/>
        <formatter type="xml"/>
        <batchtest fork="yes" todir="${junit.report.dir}/test-out">
            <fileset dir="${test.home}">
                <include name="**/*Test.java"/>
                <exclude name="**/*AbstractTest.java"/>
            </fileset>
        </batchtest>
    </junit>
    <junitreport todir="${junit.report.dir}">
        <fileset dir="${junit.report.dir}/test-out">
            <include name="TEST-*.xml"/>
        </fileset>
    </junitreport>
    <record name="${junit.report.dir}/test-output.txt" action="stop"/>
</target>

The code snippet will generate the XML reports for each test case, and the reports will be captured to '${junit.report.dir}' directory.

About haltonfailure

If 'haltonfailure' in junit task is defined to true, the junit reports are not complete. If you want to generate the full reports, set 'haltonfailure' to false.

Publish JUnit Report

Add Publish JUnit Report step to your workflow. If you have several report sets, you can add several publish JUnit steps with different report set names.

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.