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
The constructor and the SetUp methods are used differently: The constructor is run only once. However, the SetUp methods are run multiple times, before every test case is executed.
SetUp