Does NUnit support the concept of an Assembly Teardown similar to the Microsoft.VisualStudio.TestTools.UnitTesting.AssemblyCleanupAttribute that can be applied to a static method?
This would be run after all the tests within the assembly have completed. I am currently using NUnit 2.6.0.
It turns out this functionality does exist in NUnit it is just not very obvious or intuitive.
According to Charlie Poole in the feature request I made for this functionality here, he states the following will work, which is a direct quote from him.
Now this is not pretty but it should achieve the same functionality, and maybe he will make it a little cleaner in 3.0. 🙂