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

I'm looking for a good .Net code coverage alternative to NCover (insufficient .Net 3.5 coverage and now pay-for) or VSTS (way too expensive).

We currently test with NUnit, but could switch to something with a similar 'layout' for its text fixtures if it were better integrated.

share|improve this question
@Keith are you still using PartCover? would really love to know the outcome :-) – chakrit Aug 18 '09 at 16:21
We got the budget for VSTS after I asked this one, so in the end we went with that. – Keith Aug 19 '09 at 7:15

closed as not constructive by Tim Post Jun 11 '12 at 8:31

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.

13 Answers

up vote 37 down vote accepted

You can use PartCover (free)

This is analog for NCover application, but have some advantages. It specifies which assemblies and classes you want to report and can work not only assemblies that have debug symbols.

UPDATE: PartCover is now only supported on its GitHub fork

share|improve this answer
For me, the biggest reason for using NCover is that I can get nice statistics and line by line highlights with NCoverExplorer. Do PartCover have something similiar? – mizipzor Jun 14 '10 at 22:22
PartCover now supports .NET4 and you can use ReportGenerator to view the results; it's little brother also supports branch coverage. – Shaun Wilde Aug 27 '11 at 1:55
6  
I think PartCover has been superseded by OpenCover. github.com/sawilde/opencover – Jedidja Feb 28 '12 at 15:13

A valid alternative to NCover these days is JetBrains dotCover This is especially true if you're using ReSharper test runner as dotCover integrates nicely into it.

share|improve this answer

I've used PartCover. The last time I checked, though, PartCover didn't support running code coverage metrics in an ASP.NET hosted app, which is quite a big drawback imho. But for measuring code coverage when unit testing domain logic, PartCover does the job well.

share|improve this answer

Thanks, I'll check out PartCover.

crucible - in response to your question

We're currently using the old free version of NCover. it can't handle anonymous delegates, auto-initialisers or Linq syntax.

Given that we use all of them lots it's a problem for us.

share|improve this answer

SharpDevelop has an integrated Nunit runner and Code Coverage toolset. I highly recommend it as an alternative. Oh, and it is open source: http://sharpdevelop.codeplex.com/ Also, it works with .net 3.5 and all that jazz...

share|improve this answer

Have you checked out the full featured NCover 3.0 that's free for devs? All you have to do is pick up the support (which is still a bargain).

NCover 3.0 free for devs

I know the developers of NCover and there's some cool stuff coming down the pipe (4.0 in a few months I think...)

share|improve this answer
1  
It's not really free - you have to buy the support contract. Still, useful to know. – Keith Aug 15 '09 at 13:16
3  
not available any longer. – klm_ Nov 9 '10 at 8:34
Good to know (I don't use NCover myself but I know the founder and some folks over there). – Valien Nov 18 '10 at 17:03

TestDriven.net is fairly cheap and they give out a free personal license (i.e. it's pretty liberally licensed). http://www.testdriven.net/

It comes with NCoverExplorer built-in and integrates nicely into Visual Studio. It supports pretty much every Unit testing framework in addition to NUnit.

share|improve this answer

I use NCover community edition (version 1.5.8) which is completely free, at least as far as I can tell. Direct link to download.

share|improve this answer
3  
That version's now several years out of date. It can't handle most of the .Net 3.5 stuff. You're right that it's completely free, NCover used to be up until this version (about 3 years ago I think) and they went paid for future releases. It'll do if you're still on .Net 2 with no plans to upgrade. – Keith Jun 15 '10 at 7:53
Looking at NCoverExplorer, it seems to do as it should. Are you saying that this is something that might come back and bite me? – mizipzor Jun 15 '10 at 10:13

They haven't been updating as regularly as they used to but TestMatrix at http://www.exactmagic.com/products/testmatrix/index.html is a good tool. You can export reports to excel and with a few excel macros get some decent data extracted (though I admit the experience could be smoother).

I've not tried automating it in a build environment and if that's your goal you might want to see how that scenario plays out but it does work with both nUnit and MS Test (so if you ever find enough reason to move to TFS you are covered). Like the VSTS coverage tool it integrates with the Visual Studio IDE nicely highlighting code line by line. Better than VSTS it allows right click running of tests on the actual lines of code of the test itself; highlighting the region and showing a tooltip with a success report or exception details. Plus there's a time in method profiler stuck in there as well.

All in all a great IDE experience and worth a look - but again if build automation is an end goal you'll need to check that out.

share|improve this answer

I'm not sure about the coverage, but there is a free version of NCover which is a version before NCoverExplorer, and we're still using that - it's available on the NCover site still.

That said, if you could elaborate on what is not covered by its coverage I'd be interested in hearing about that too!

share|improve this answer

The NCover on SourceForge is not the Same NCover that the user is asking about. It has been unsupported for over 4 years.

share|improve this answer

Our Semantic Designs Test Coverage tool for C#, handes C# 2.0, 3.0 (all features including lambdas and LINQ) and very soon 4.0. Handles very large systems with extremely low overhead. Intuitive graphical display of coverage data by coloring blocks of covered/uncoverd code; full report of coverage data down to the method level and summarized in larger elements such as classes and packages. Usable even in embedded development environments.

EDIT 3/30/2010 Now handles C# 4.0.

share|improve this answer
1  
Note, not free or open source. – Jeremy McGee Sep 1 '10 at 15:24
Note: neither is version of NCover that handles 3.5/4.0. – Ira Baxter Dec 4 '10 at 22:55

It's worth mentioning that the old (free) NCover is available at Sourceforge.

share|improve this answer
1  
It is, but it doesn't cover lamdas or linq expressions - I don't really want to try and write coverage for that myself. Thanks anyway. – Keith Aug 14 '09 at 12:17
That's odd - we still use NCover 1.5.8 against code built on 3.5sp1, and it has no trouble with lambdas. I've not tried with LINQ via keywords, but it has no trouble with LINQ in the form of fluent-style use of IEnumerable extension methods. – Steve Gilham Aug 14 '09 at 19:41
I've not had any problem with Linq or Lambdas either. I couldn;t get the free one working at sourceforge but DID get the free (old) version working from ncover.com. – Lee Englestone Aug 18 '09 at 16:14

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