The NUnit documentation doesn\'t tell me when to use a method with a TestFixtureSetup and when to do the setup in the constructor.
TestFixtureSetup
public class MyTe
[TestFixtureSetUp] and [TestFixtureTearDown] are for whole test class. runs only once.
[TestFixtureSetUp]
[TestFixtureTearDown]
[SetUp] and [TearDown] are for every test method(test). runs for every test.
[SetUp]
[TearDown]