122 lines
3.1 KiB
Plaintext
122 lines
3.1 KiB
Plaintext
=======================================================================
|
|
= =
|
|
= =
|
|
= ReportGenerator =
|
|
= Generation of reports based on PartCover/ OpenCover / NCover =
|
|
= =
|
|
= http://www.palmmedia.de =
|
|
= =
|
|
= =
|
|
=======================================================================
|
|
|
|
DESCRIPTION
|
|
|
|
ReportGenerator converts XML reports generated by PartCover, OpenCover
|
|
or NCover into a readable HTML report.
|
|
In contrast to the XSLT-Transformation included in PartCover, the
|
|
report is more detailed.
|
|
It does not only show the coverage quota, but also includes the source
|
|
code and visualizes which line has been covered.
|
|
|
|
ReportGenerator supports merging several reports into one.
|
|
If you pass several reports to ReportGenerator, the reports will be
|
|
merged into one.
|
|
It is also possible to pass one XML file containing several reports to
|
|
ReportGenerator (e.g. a build log file).
|
|
|
|
Several output formats are supported by ReportGenerator. The following
|
|
report types can be generated:
|
|
|
|
-HTML, HTMLSummary
|
|
-XML, XMLSummary
|
|
-Latex, LatexSummary
|
|
|
|
=======================================================================
|
|
|
|
COMPATIBILITY
|
|
|
|
OpenCover
|
|
PartCover 4.0
|
|
PartCover 2.2, 2.3
|
|
NCover (tested version 1.5.8, other versions may not work)
|
|
|
|
=======================================================================
|
|
|
|
LICENSE
|
|
|
|
This program is licensed under the Apache License 2.0.
|
|
This means you may use this program in any project.
|
|
You are allowed to modify the program as you like.
|
|
|
|
For further details take a look at LICENSE.txt.
|
|
|
|
=======================================================================
|
|
|
|
CHANGELOG
|
|
|
|
1.1.0.0
|
|
|
|
* New: Added support for OpenCover
|
|
* New: Added XML and Latex as output formats
|
|
|
|
1.0.0.0
|
|
|
|
* New: Return code now indicates success/failure
|
|
* New: Added MSBuild Task
|
|
|
|
0.7.2.0
|
|
|
|
* New: Upgraded to .NET 4.0 and VS 2010
|
|
* Fix: Improved performance by using TPL
|
|
|
|
0.7.1.0
|
|
|
|
* Fix: Improved performance
|
|
|
|
0.7.0.0
|
|
|
|
* New: Coverage information of unexecuted methods for
|
|
PartCover 2.3.0.35109
|
|
|
|
0.6.2.0
|
|
|
|
* Fix: Improved performance
|
|
|
|
0.6.1.0
|
|
|
|
* New: Added support for PartCover 2.3.0.35109
|
|
|
|
0.6.0.0
|
|
|
|
* New: Included log4net
|
|
|
|
0.5.0.0
|
|
|
|
* New: Added more statistics
|
|
* Fix: Coverage quota is now calculated exactly
|
|
|
|
0.4.0.0
|
|
|
|
* Fix: Improved performance
|
|
|
|
0.3.0.0
|
|
|
|
* New: Merging of reports
|
|
* New: Multicore support
|
|
|
|
0.2.0.0
|
|
|
|
* New: Added NCover support
|
|
* New: Automatical detection of parser
|
|
* Fix: Improved performance
|
|
|
|
0.1.0.0
|
|
|
|
* New: Initial release
|
|
|
|
=======================================================================
|
|
|
|
KNOWN ISSUES
|
|
|
|
The reports generated by PartCover do not contain enough information to
|
|
correctly get the coverage of 'Auto Properties'. |