Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
9  
this was a great question that just saved me several days of research - seeing as ncrunch license just died. Yes I get it goes agaisnt the site format ... but that is only because the site has defined itself to be less useful that it potentially could be. 51 favorites and 110 mark ups ... seems popular and constructive to me – John Nicholas Oct 30 '12 at 12:39

closed as not constructive by casperOne Sep 12 '12 at 12:53

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

11 Answers

up vote 35 down vote accepted

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.

share|improve this answer
2  
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
This is what I used as well - until I moved my apps into 64bits :-( – galaktor Aug 17 '12 at 10:58

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.

share|improve this answer
5  
PartCover has essentially been replaced by OpenCover (github.com/sawilde/opencover), as PartCover stagnated with support only for .NET 2. – David Keaveny Aug 31 '11 at 3:21

JetBrains(of ReSharper fame) has been working on a coverage tool for a little while called dotCover It's showing a great deal of promise.

share|improve this answer
4  
dotCover is released and available for purchase since Sep 2010: jetbrains.com/dotcover – gorohoroh Oct 24 '10 at 9:30

I just tested out NCrunch and have to say I am very impressed. It is a continuous testing tool that will add code coverage to your code in Visual Studio at almost real time. At the time as I write this NCrunch is free. It is a little unclear if it going to be free, cost money or be opened source in the future though.

share|improve this answer

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

share|improve this answer

TestCocoon is also pretty nice: http://www.testcocoon.org/index.html with active development and user community:

  • Open source (GPL3)
  • Supports C/C++/C# cross platform (Linux/Windows/Mac)
  • CoverageScanner - Instrumentation during the Generation
  • CoverageBrowser - View, Analysis and Management of Code Coverage Result

EDIT:Test cocoon is no longer developed and its creators are now producing a commercial software for C/C++

share|improve this answer

See the C# Test Coverage tool from my company, 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.

share|improve this answer
Hi! May one contact you over MSN/ICQ/XMPP/... or just email? I would like to have a chat with you on how you implemented compiling ASTs back to source. – NikiC Apr 23 '11 at 15:14
@nikic: See my bio for an email contact address. – Ira Baxter Apr 23 '11 at 15:21
@nikic: ... or, you could pose an SO question and leave a forward reference to it here. It might get answered :-} – Ira Baxter Apr 23 '11 at 15:27
I have written you an email ;) If you feel like that being more of an SO-question, tell me so, I'll reask it here :) – NikiC Apr 28 '11 at 14:30
Okay, here goes the question: stackoverflow.com/questions/5832412/… – NikiC Apr 29 '11 at 13:13
show 2 more comments

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.

share|improve this answer
1  
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 '09 at 19:37

Code coverage features, as well as programmable API's, come with Visual Studio 2010. Sadly, the only two editions that include the full Code Coverage capabilities are Premium and Ultimate. However, I do believe the API's will be available with any edition, so creating code coverage files and writing a viewer for the coverage info would likely be possible.

share|improve this answer

TestMatrix is a unit test runner and Code Coverage tool.

share|improve this answer

We've release EAP to dotCover (http://www.jetbrains.com/dotcover) and will be releasing the Beta soon.

share|improve this answer

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