vote up 2 vote down star

Is there a way to test code coverage within visual studio if I'm using MSTest? Or do I have to buy NCover?

Is the NCover Enterprise worth the money or are the old betas good enough if Microsoft doesn't provide built in tools to do code coverage?

flag

3 Answers

vote up 1 vote down check

Yes, you can find code coverage information from within Visual Studio, provided that you have a version of Visual Studio that provides that functionality, such as the Team System. When setting up the unit tests in VS.NET, a localtestrun.testrunconfig file will be created and added as part of the solution. Double-click this file and find the option Code Coverage option on the left of the dialog. Select the assemblies for which you want to collect code coverage information and then re-run the unit tests. Code coverage information will be collected and is available. To get the code coverage information open the test results window and click on the code coverage results button, which will open an alternative window with the results.

link|flag
I believe it is also available in VS Pro. – Brian Rasmussen Jan 6 '09 at 6:22
@Brian: It is not. Code coverage is currently only available in Developer Edition, Test Edition & Team Suite, see msdn.microsoft.com/en-us/vsts2008/… – Andreas Huber Jan 6 '09 at 8:53
@Andreas: My bad, thanks for the update. – Brian Rasmussen Jan 6 '09 at 9:17
vote up 4 vote down

MSTest includes code coverage, at least it does in the version of VS I have. However, you need to enable the instrumentation in the testrunconfig, which is just ugly and a major PITA.

A much easier option is to use TestDriven.NET, which can automate coverage, even for MSTest. And since it uses the MSTest core, you still get all the VS goodness such as colorization (red/blue lines for covered code). See here (including a screencast), or since an image says a thousand words: alt text

link|flag
vote up 0 vote down

@Marc gravell, rightly said image says a thousand words, that for the info, got configure MSTEST with TD.NET and working fine. Thanks so much.

link|flag

Your Answer

Get an OpenID
or

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