Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to see the code coverage when using nUnit? I know there's such a feature in visual studio but can you use it with nUnit or only with the built-in vs unit tests?

share|improve this question

4 Answers

up vote 13 down vote accepted

You can use NCover. Now its commercial, but version 1.5.8 (at the bottom of page, community edition) is still free and if you want to visualize it, then use NCoverExplorer.

EDIT:

It's possible to wrap nUnit or mbUnit with Visual Studio code as well. VSTS Code Coverage Runner

share|improve this answer
6  
Just downloaded TestDriven.NET and apparently nCover is integrated in it. Very cool, the code coverage. Makes you see right away if you have things not covered in certain classes. Thx. – Lieven Cardoen Nov 17 '09 at 10:01

PartCover is free and I've just blogged how to use it with NUnit See this link

share|improve this answer

Visual Studio 2012 finally added support for third party unit test framework.

You can add frameworks using the Extension Manager and automatically "Code coverage" starts working with installed framework. See my reply in Does VS2010 Code Coverage support nUnit?

share|improve this answer

See SD C# Test Coverage. Comes with built-in visualization of test coverage data over your source code as well as summary reports.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.