|
|
|
[
Permlink
| « Hide
]
AlSt [21/Dec/09 03:39 PM]
I hope I have not missed some setting or approach/workaround in the current JUnit plug-in...
For this case, the user can transform the original junit xml report by using xslt before publish the report. For example, we have below report:
<testsuite errors="0" failures="38" hostname="thebiggerone" name="com.pmease.quickbuild.FooTest" tests="1" time="210.297" timestamp="2009-11-26T12:40:48"> <properties> ...... <property name="java.vm.version" value="14.0-b16" /> ...... </properties> <testcase classname="com.pmease.quickbuild.FooTest" name="testBar" time="210.129"/> </testsuite> then, after transform the report, we will publish below report: <testsuite errors="0" failures="38" hostname="thebiggerone" name="com.pmease.quickbuild.FooTest" tests="1" time="210.297" timestamp="2009-11-26T12:40:48"> <properties> ...... <property name="java.vm.version" value="14.0-b16" /> ...... </properties> <testcase classname="com.pmease.quickbuild.FooTest" name="testBar (jvm-14.0-b16)" time="210.129"/> </testsuite> |