Clover.NET XML Report Generator
XMLReporter - The Clover.NET XML Report Generator
The XML Report generator, XmlReporter, combines all of the coverage recordings generated by the Clovered code during execution, the coverage database created by instrumentation and the source files to generate an XML report on the coverage results.
Usage
XMLReporter [options]
Options
| Long Name | Short Name | Required | Description |
|---|---|---|---|
| --initstring | -i | Yes | This option specifies the location of the coverage database generated during instrumentation. This is used to load the coverage database and any associated coverage recordings. |
| --output | -o | Yes | The name of the XML file which will contain the report |
| --title | -t | Yes | The report title. |
| --lineinfo | -l | No | Include information about each coverage counter for each file in the report. |
| --verbose | -v | No | Turns on verbose level logging. This gives more information about the progress of the report generation |
| --debug | No | Turns on debug level logging. This will give more information than verbose level |
Examples
XMLReporter -i CloverBuild\clover.cdb -o report -t Test
This example generates a report in report.xml, titles Test.
XMLReporter -i CloverBuild\clover.cdb -o report -t Test -l
This example produces a more comprehensive report by including information about each coverage counter in the report.
