Reputation: 530
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
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