JUnitEE Post-Processor
The JUnitEE post-processor can be used to process XML reports in the format produced by the junitreport
task of the Apache Ant
build tool. It is a simple customisation of the junit.pp post-processor to work out-of-the-box with tests written using JUnitEE
.
Attributes
See junit.pp.
Child Elements
None.
Examples
Create and apply a JUnitEE post-processor to a captured test report:
<junitee.pp name="junitee"/>
<recipe name="default">
<command name="build">
<ant targets="build.all"/>
<artifact name="junitee xml report" file="build/reports/junitee/TESTS-TestSuites.xml" fail-if-not-present="false">
<process processor="${junitee}"/>
</artifact>
</command>
</recipe>