I use NUnit for my unit tests, and I have a unit test class library project project, so Visual Studio starts NUnit gui when I press F5. This allows me to set breakpoints in my tests and see the contents of variables, etc.
What does not happen is that if one of my tests fails (throws an exception), Visual Studio does not automatically break the line that caused the exception. NUnit gui just shows that the test failed.
Since I use my tests to debug my code, I would really like to deal with exceptions, as this will simplify the situation; especially when the code is in a loop, and I cannot easily use conditional breakpoints.
Is this just a simple setup that I am missing?
source share