13

I'm looking for a tool that I can run against my code base to determine which areas of my code are covered by NUnit tests I've written. I would appreciate any suggestions at all, and example usage if needed. Thanks!

mkelley33
  • 5,323
  • 10
  • 47
  • 71

3 Answers3

6

Personally, I like NCover along with TestDriven.NET (for Visual Studio integration).

PartCover is a good alternative, too. But as far as I know, there is no Visual Studio integration for PartCover.

Bryan Menard
  • 13,234
  • 4
  • 31
  • 47
  • Hey thanks! I downloaded PartCover, installed it, and configured it, but I got a ThreadInterrupted exception. The manual pointed to nunit-gui.exe, but I'm running NUnit 2.5. Is there a way to get this error to go away and run it with NUnit 2.5 for my asp.net mvc project? (I can provide full stack trace if it helps) – mkelley33 Nov 01 '09 at 16:49
3

I use TestDriven.NET at both work and home, works a treat for me :)

Sara
  • 612
  • 5
  • 21
0

Please use TestDriven.NET to test.

Kanwar Singh
  • 908
  • 12
  • 21