views:

261

answers:

4

Just wondering what people are using for code coverage tools when using MS Visual Studio 2008 Pro. We are using the built-in MS test project and unit testing tool (the one that come pre-installed with MS VS 2008 pro)!

+5  A: 

NCover is a very popular choice.

Reed Copsey
Thanks ! I will download a trial version of NCover...
robihot
A: 

I would suggest that you go with NUnit for tests and NCover for coverage.

P.K
There's nothing wrong with the built-in testing tool in VS, especially if they already have a suite of tests using it...
Reed Copsey
VS coverage only supports statement level as for my experience. If you are looking for decision level coverage you'll need to look for better tools.
Varuna
I have also found the VS functionality to be the usual UI mess, and difficult to use.
mackenir
A: 

If you use the TestDriven.Net addin you will get a very good unit test runner and NCover thrown in as well. Get the personal developer version. This is realy the best ever addin for visual studio.

Peter Marshall
A: 

I have been using the built in VS tools and have been happy with the results. NUnit / NCover seem to have a generally good reputation from people I've spoken with.

This post has a great deal of content about code coverage and other metrics: http://stackoverflow.com/questions/1047758/what-can-be-alternative-metrics-to-code-coverage

JB