Can you recommend an alternative for NCover? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:00:44Zhttp://stackoverflow.com/feeds/question/38360http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover26Can you recommend an alternative for NCover?Keith2008-09-01T20:07:42Z2009-10-06T19:11:40Z
<p>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).</p>
<p>We currently test with NUnit, but could switch to something with a similar 'layout' for its text fixtures if it were better integrated.</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/38372#383721Answer by Lex for Can you recommend an alternative for NCover?Lex2008-09-01T20:18:11Z2008-09-01T20:18:11Z<p>They haven't been updating as regularly as they used to but TestMatrix at <a href="http://www.exactmagic.com/products/testmatrix/index.html" rel="nofollow">http://www.exactmagic.com/products/testmatrix/index.html</a> 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).</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/38706#387060Answer by crucible for Can you recommend an alternative for NCover?crucible2008-09-02T02:18:22Z2008-09-02T02:18:22Z<p>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.</p>
<p>That said, if you could elaborate on what is not covered by its coverage I'd be interested in hearing about that too!</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/38707#3870714Answer by John for Can you recommend an alternative for NCover?John2008-09-02T02:24:19Z2008-09-02T02:24:19Z<p>You can use <a href="http://sourceforge.net/project/showfiles.php?group_id=175733" rel="nofollow">PartCover</a> (free) </p>
<blockquote>
<p>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.</p>
</blockquote>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/38984#389844Answer by Thomas Lundström for Can you recommend an alternative for NCover?Thomas Lundström2008-09-02T07:38:17Z2008-09-02T07:38:17Z<p>I've used <a href="http://sourceforge.net/projects/partcover/" rel="nofollow">PartCover</a>. 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.</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/39307#393072Answer by Keith for Can you recommend an alternative for NCover?Keith2008-09-02T11:48:25Z2008-09-02T12:57:18Z<p>Thanks, I'll check out PartCover.</p>
<p>crucible - in response to <a href="#38706" rel="nofollow">your question</a></p>
<p>We're currently using the old free version of NCover. it can't handle anonymous delegates, auto-initialisers or Linq syntax.</p>
<p>Given that we use all of them lots it's a problem for us.</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/1277472#12774721Answer by Lee Englestone for Can you recommend an alternative for NCover?Lee Englestone2009-08-14T11:53:21Z2009-08-14T11:53:21Z<p>It's worth mentioning that the old (free) NCover is available at Sourceforge.</p>
<p>-- Lee</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/1279752#12797520Answer by Valien for Can you recommend an alternative for NCover?Valien2009-08-14T19:33:10Z2009-08-14T19:33:10Z<p>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).</p>
<p><a href="http://www.ncover.com/we%5Flove%5Fdevs" rel="nofollow">NCover 3.0 free for devs</a></p>
<p>I know the developers of NCover and there's some cool stuff coming down the pipe (4.0 in a few months I think...)</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/1350297#13502970Answer by Ira Baxter for Can you recommend an alternative for NCover?Ira Baxter2009-08-29T02:51:08Z2009-08-29T02:51:08Z<p>See <a href="http://www.semanticdesigns.com/Products/TestCoverage/CSharpTestCoverage.html" rel="nofollow">Semantic Designs Test Coverage tool for C#</a>, 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.</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/1467720#14677200Answer by Lucas B for Can you recommend an alternative for NCover?Lucas B2009-09-23T18:15:12Z2009-09-23T18:15:12Z<p>SharpDevelop has an integrated Nunit runner and Code Coverage toolset. I highly recommend it as an alternative. Oh, and it is open source: <a href="http://sharpdevelop.codeplex.com/" rel="nofollow">http://sharpdevelop.codeplex.com/</a> Also, it works with .net 3.5 and all that jazz...</p>
http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover/1527495#15274950Answer by joe.feser for Can you recommend an alternative for NCover?joe.feser2009-10-06T19:11:40Z2009-10-06T19:11:40Z<p>The NCover on SourceForge is not the Same NCover that the user is asking about. It has been unsupported for over 4 years.</p>