vote up 26 vote down star
8

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.

flag

76% accept rate
@Keith are you still using PartCover? would really love to know the outcome :-) – chakrit Aug 18 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 at 7:15

10 Answers

vote up 14 vote down check

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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!

link|flag
vote up 4 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

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

-- Lee

link|flag
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 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 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 at 16:14
vote up 0 vote down

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...)

link|flag
It's not really free - you have to buy the support contract. Still, useful to know. – Keith Aug 15 at 13:16
vote up 0 vote down

See Semantic Designs Test Coverage tool for C#, handling 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.

link|flag
vote up 0 vote down

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...

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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