vote up 9 vote down star
7

I wonder what options there are for .net (or C# specifically) Code Coverage, especially in the Lower Priced segment?

flag

5 Answers

vote up 5 vote down check

I use the version of NCover that comes with TestDriven.NET. It will allow you to easily right-click on your unit test class library, and hit "Test With -> Coverage", and it will pull up the report.

link|flag
Gotta love TestDriven.NET; as it happens, I use VSTS, but I tend to use NUnit (not MSTes), and use TestDriven.NET to "Test With -> Team Coverage", which uses the MSTest coverage tool (including colorizing) with my NUnit tests. Fantastic. – Marc Gravell Nov 10 '08 at 7:01
vote up 0 vote down

Not sure what the difference with the retail NCover, but there is also an NCover project on sourceforge that is of course open source and free.

link|flag
The version on Sourceforge is the basis for the current versions of NCover. It's not being actively worked on/supported anymore but still widely available. They are up to version 3.0 now. – Valien Aug 14 at 19:37
vote up 1 vote down

See the C# Test Coverage tool from Semantic Designs:

http://www.semanticdesigns.com/Products/TestCoverage/CSharpTestCoverage.html

Very low overhead, handles huge systems of files, intuitive GUI showing coverage on specific files, and generated report with coverage breakdown at method, class and package levels.

link|flag
vote up 5 vote down

An alternative to NCover can be PartCover, is an open source code coverage tool for .NET very similar to NCover, it includes a console application, a GUI coverage browser, and XSL transforms for use in CC.Net.

Very interesting product.

link|flag
vote up 3 vote down

There are pre-release (beta) versions of NCover available for free. They work fine for most cases, especially when combined with NCoverExplorer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.