Rased Dot Net
Rased Dot Net

Reputation: 530

How to debug single Nunit test visual studio 2013

How can I debug a specific Nunit test from visual studio? I have multiple TestFixtures in different files. Whenever I run a test it always hits other TestFixture's debug point/exception.

Upvotes: 4

Views: 626

Answers (1)

Padraic
Padraic

Reputation: 667

Install nunit test adapter and you can right click inside a unit test method and click debug tests. You can also use the Test Explorer window.

Upvotes: 6

Related Questions