I'm using MbUnit + Gallio. I know that MbUnit has attributes which can be applied to methods which should run:
- [FixtureSetUp] - before each fixture
- [FixtureTearDown] - after each fixture
- [SetUp] - before each test
- [TearDown] - after each test
But, say, I run several fixtures at once. And I would like to run a piece of code after ALL fixtures have already been run.
Is it possible to do it?