Description
We are migrating to JUnit 5 (from JUnit 4) and using the console launcher in combination with ant like described in https://github.com/junit-team/junit5-samples/blob/master/junit5-jupiter-starter-ant/build.xml
<java classpathref="test.classpath" classname="org.junit.platform.console.ConsoleLauncher" fork="true">
<arg value="--scan-classpath"/>
<arg line="--reports-dir build/test-report"/>
</java>
We cannot use junitlauncher-task because the output supports no @ParameterizedTest and so on.
After running the tests we generate a junitreport (with junitreport ant task) for the test run and a
unitth report (http://junitth.sourceforge.net/) for the last 100 test runs.
The problem is that the LegacyXmlReportGeneratingListener generates one BIG TEST-nnn.xml for a few hundred test cases. This results in a junitreport without any classes & packages. Just one big list of all tests.
The "OLD" JUnit 4 Ant Task generated a TEST-nnn.xml for each test class. With this, junitreport & unitth can create readable reports. The report generated by LegacyXmlReportGeneratingListener is not readable and useless because it exists of one big "TEST" (it even looses the test class names).
Steps to reproduce
Run
<java classpathref="test.classpath" classname="org.junit.platform.console.ConsoleLauncher" fork="true">
<arg value="--scan-classpath"/>
<arg line="--reports-dir build/test-report"/>
</java>
<junitreport todir="build/test-report" tofile="report.xml">
<fileset dir="build/test-report">
<include name="*.xml" />
</fileset>
<report format="frames" todir="build/test-report" />
</junitreport>
with multiple test classes. You just get one big TEST-junit-jupiter.xml instead of a TEST-nnn.xml for each class.
Context
- Used versions (Jupiter/Vintage/Platform): 5.5.1
- Build Tool/IDE: Ant / ConsoleLauncher