-1

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?

arjuncc
  • 3,227
  • 5
  • 42
  • 77
user1130157
  • 113
  • 3
  • 12
  • possible duplicate of [Free code coverage tools in .NET for personal project](http://stackoverflow.com/questions/468930/free-code-coverage-tools-in-net-for-personal-project) – skolima Apr 18 '12 at 09:26
  • that's OK but i asked that part cover is open source or not – user1130157 Apr 18 '12 at 09:39
  • I want to use OpenCover in CC net Web Dashboard. So it will display Code Coverage per build. – user1130157 Apr 18 '12 at 14:07

2 Answers2

2

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.

Shaun Wilde
  • 8,228
  • 4
  • 36
  • 56
0

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>

user1130157
  • 113
  • 3
  • 12