Can u please tell me any code coverage tool name that i can use in cruise control .net,
Is part cover is open source or not?
Can u please tell me any code coverage tool name that i can use in cruise control .net,
Is part cover is open source or not?
OpenCover and PartCover are both open source code coverage tools that can be integrated into build automation systems such as CC.NET.
With both you can use ReportGenerator to display results; though PartCover does come with it's own viewer I prefer to use the ReportGenerator one myself as the HTML can be integrated quite nicely into a build status report.
You may also build your own reports using XSLT or such like as both tools have an XML output.
You can merge OpenCover output with log file and by using XSLT u can show Code coverage build by build.
<publishers>
<merge>
<files>
<file>yourPath\coverage.xml</file>
</files>
</merge>