I have an bunch of NUnit tests that all inherit from a class that implements the NUnit Teardown function.
[TearDown] public void TeardownTest() { }
Whenever one of the tests generate an exception it just jumps straight to the TearDown function. How do I know what the exception was that was generated that caused it to go to that exception?