Does NUnit let me invoke a method after every test method?
e.g.
class SomeClass
{
[SomeNUnitAttribute]
public void CalledAfterEveryTest()
{
}
}
I'm aware of [SetUp] and [TearDown], but that only works for the tests in the current class. I want something like [TearDown], except it runs after every unit test, whether its in the current class or not. Possible?