tags:

views:

112

answers:

1

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?

+1  A: 

This has been already discussed here.

Darin Dimitrov