Lieven Cardoen
Lieven Cardoen

Reputation: 25969

Code coverage while debugging in Visual Studio 2010

Is there a way to enable code coverage while debugging a asp.net site (+assemblies)?

I know how to do this for Unit Tests, but not if I'm just debugging.

What I'm actually trying to do is checking which parts of the code a certain mobile app uses. So I would like to debug my localhost asp.net site while using the mobile app.

Upvotes: 2

Views: 481

Answers (1)

Matthieu
Matthieu

Reputation: 4620

I think you could achieve your goal with the profiler that comes with Visual Studio 2010. You would have all the code called during a debug session.

Upvotes: 2

Related Questions