Provides a Maven 2 plugin to generate test reports. The test reports collect information about all test cases of a particular production type, the unit under test (UUT).

If you are looking for a report ready to use, please consider using testdoc-maven-report-plugin. There you will find means to create a Maven site or a plain XML report. The testdoc-maven-plugin simply maps the test case stories to their UUT classes in multiple files as you can seen in the sample below.

<testdoc>">
  <uut>de.smartics.testdoc.report.export.XmlExporter</uut>
  <scenarios>
    <scenario>
      <testCase>de.smartics.testdoc.report.export.XmlExporterTest</testCase>
      <testName>writesTestDocsWithNoScenarios</testName>
      <sentence>Writes test docs with no scenarios.</sentence>
    </scenario>
    <scenario>
      <testCase>de.smartics.testdoc.report.export.XmlExporterTest</testCase>
      <testName>writesTestDocsWithOneScenario</testName>
      <sentence>Writes test docs with one scenario.</sentence>
    </scenario>

    ...

  </scenarios>
</testdoc>

The example shows part of the content of the XML report file that collects all stories about the UUT XmlExporter.