Reputation: 6636
Just moved from VS2010 Professional to Premium.
When I hit a failing Assert using MSTEST, it doesn't stop in the debugger anymore (it does produce a correct fail in the Test Results)
Problem: How to get the debugger to stop on the failing assert when I run tests
Upvotes: 12
Views: 8225
Reputation: 755457
In order to do this you'll need to do the following
Upvotes: 17
Reputation: 29042
I've seen this before when I run failed tests with (CTRL + R, F) which just runs the failed tests where (CTRL + R, CTRL + F) debugs the tests and breaks when the assert fails. Let me know if this helps.
Upvotes: 1