Yoiku
Yoiku

Reputation: 912

VS2012 professional Code Coverage

I´m searching for a way to generate code coverage reports on VS2012 professional and using Nunit. I know that VS2012 ultimate have a code coverage tool and with Nunit_Adapter you can generate the code coverage report, but the issue is that I am using VS2012 professional and does not have the option to generate the code coverage report.

Does someone knows a plug-in or a relative simple way to creates this reports on VS2012 professional?

Thanks,

P.S And if someone knows a way to creates this reports using Nunit framework on VS2010 it could be an option.

Upvotes: 3

Views: 3067

Answers (2)

Shaun Wilde
Shaun Wilde

Reputation: 8358

Or if you want free (opensource) you can try OpenCover which is available as a nuget package and use ReportGenerator to generate some nice reports.

Upvotes: 5

Reed Copsey
Reed Copsey

Reputation: 564551

You'll need a third party code coverage tool, such as NCover or dotCover.

Upvotes: 4

Related Questions