user197466
user197466

Reputation:

Code Coverage Tools & Visual Studio 2008 Pro

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

Upvotes: 2

Views: 1423

Answers (3)

Peter Marshall
Peter Marshall

Reputation: 1355

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.

Upvotes: 0

P.K
P.K

Reputation: 19167

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

Upvotes: 0

Reed Copsey
Reed Copsey

Reputation: 564831

NCover is a very popular choice.

Upvotes: 5

Related Questions