I am trying to integrate OpenCover with CruiseControl.NET . At this point, I modified the build system, so it runs my nunit tests in OpenCover. Then I create the Xml and Html reports using ReportGenerator .
Assuming you can integrate the reports generated by ReportGenerator into the CruiseControl.NET webapp, how do I integrate the two?
NCover has its own NCoverReporting task , which can be used, but since I do not run NCover, I cannot compare its output with the XML reports created by OpenCover.
Related thoughts / questions:
- OpenCover generates an XML file by default, but is this XML file available for cc.net?
- ReportGenerator also generates XML, are they for something like cc.net?
- cc.net has a File-Merge publisher that combines logs, but I have not yet found documentation indicating which file formats are useful / used by cc.net.
source share