我有多种测试方法应该测试多个参数的所有可能组合。我可以在这样的方法上使用NUnit ValueAttribute或RangeAttribute:
[TestFixture]
public class MyExampleTests
{
[Test]
public void TestedEntity_GivenParemeter_Passes(
[Values(1, 2)] int inputA,
[Range(1, 4)] int inputB)
{
if (inputA > 0 && inputB > 0)
Assert.Pass();
}
}
但是,在我的实际案例中,有 4 个参数、十几个方法和更多值,因此为每个方法写出所有值变得很乏味,如果我想进行更改,我可能会在某个地方出错。
如何将所有值组合的测试生成从单个方法移到TestFixture主体中?以下不起作用,但这将是我想要的:
[TestFixture]
public class MyExampleTests2
{
readonly int inputA;
readonly int inputB;
public MyExampleTests2(
[Values(1, 2)] int inputA,
[Range(1, 4)] int inputB)
{
this.inputA = inputA;
this.inputB = inputB;
}
[Test]
public void TestedEntity_GivenParemeter_Passes()
{
if (this.inputA > 0 && this.inputB > 0)
Assert.Pass();
}
}
我已经知道TestFixtureAttribute可以接受参数,但它们不能按我想要的方式工作。我只能给每个参数一个硬编码的值。相反,我想使用范围并让 NUnit 为每个组合创建一个测试。另外,我希望该解决方案可以在 NUnit 2.6.4 中使用。