views:

587

answers:

2

Having problems with merging multiple ncover reports into one big report, I'm looking for a free alternative to ncover.

It should have to possiblity to work with nunit, where nunit is configured to run 2 sets of tests on the same assembly (one set of tests is database independent, the other set requires a configured database). In the end the results of the two sets of tests should be combined into one to get a complete overview of our code coverage.

The merge problems I'm having with ncover are these: http://www.ncover.com/forum/show_topic/10 http://www.ncover.com/forum/show_topic/296

+1  A: 

The only other free coverage tool for .NET - that I know of, for what it's worth - is PartCover.

Grant Palin
+2  A: 

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.

Can merge an arbitrarily large number of separate execution runs into a single result. (New version being released can merge runs on different parts of the application).

Ira Baxter