Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a good, free C# unit test coverage tool? [closed]

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!

like image 934
mkelley33 Avatar asked Nov 01 '09 16:11

mkelley33


People also ask

Is C or C+ Better?

Compared to C, C++ has significantly more libraries and functions to use. If you're working with complex software, C++ is a better fit because you have more libraries to rely on. Thinking practically, having knowledge of C++ is often a requirement for a variety of programming roles.

Is C-Free free?

C-Free is a free IDE software for PC developed by Program Arts Software.


1 Answers

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.

like image 171
Bryan Menard Avatar answered Oct 19 '22 00:10

Bryan Menard