How to generate an HTML report from PartCover results .xml
|
|
|||
|
|
|
You can use a programme like xalan which make XSL Transformation (XSLT) Use it like that :
|
||||
|
|
|
To my knowledge, there is no convenient tool like NCoverExplorer that can transform a PartCover results .xml file into a .html report, but there are some .xsl files that can be used to transform PartCover's results to .html in CruiseControl.NET: Using CruiseControl.NET with PartCover. You could take those .xsl files from CruiseControl.NET and convert your PartCover results.xml using something like Sandcastle's XslTransform.exe. By the way, if this happens to be related to TeamCity, the upcoming 5.0 release will include support for .NET coverage using PartCover or NCover. See the documentation for more informations. Otherwise ignore this paragraph ;-) |
||
|
|
|
Maybe a complicated way of doing it, but I did this with the Simian xml report. Created an XSL file for the formatting, then wrote a dumb little console application;
Then I can call it from a MSBuild file like so;
|
||
|
|
|
|
Easiest solution is probably to use msxsl, a simple command line transformer. I use it for exactly this purpose, and it's easy to integrate into your build system. |
||
|
|
|
|
There is a tool you can use to generate a HTML report: http://www.palmmedia.de/Net/ReportGenerator Here you can find an article how to integrate the tool into MSBuild: www.palmmedia.de/Blog/2009/10/30/msbuild-code-coverage-analysis-with-partcover-and-reportgenerator |
||||
|
