A simple solution is this.
All your test-cases are in an abstract class for example in the TestBase-class. For example:
public abstract class TestBase
{
protected string SetupMethodWas = "";
[Test]
public void ExampleTest()
{
Console.Out.WriteLine(SetupMethodWas);
}
// other test-cases
}
Then you create two sub-classes for each setup. So each sub-class will be run a individual with it-setup method and also all inherited test-methods.
[TestFixture]
class TestA : TestBase
{
[SetUp]
public void Setup()
{
SetupMethodWas = "SetupOf-A";
}
}
[TestFixture]
class TestB : TestBase
{
[SetUp]
public void Setup()
{
SetupMethodWas = "TestB";
}
}
This works wonderful. However for simpler tests parameterized tests are a better solution
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…