AutoFixture UnitTest参数设置

时间:2016-12-07 14:25:48

标签: c# unit-testing autofixture

如何为以下单元测试设置AutoFixture:

[Theory, ... ] // <- what goes here? 
public void MyTest(int param1, string param2)
{
  ...
}

第一个参数可以采用随机生成的整数,因此AutoFixture自然适合。 第二个不可能是同一种方式。我需要第二个从动态生成的值列表中获取值,这些值在编译时是未知的。我需要告诉AutoFixture,但我不知道如何。

编辑:

在我的特定场景中,我需要的是字符串参数是某种类型的属性名称。我想对AutoFixtue说:“嘿,对于param2,从列表中取一个随机字符串,列表是myType.GetPropertyNames()。

AutoFixture是否支持这种情况?

1 个答案:

答案 0 :(得分:1)

如果您需要随机值,请使用[AutoData]

[Theory, AutoData]
public void MyTest(int param1, string param2)
{
  ...
}

如果您需要某些预定义的测试数据,可以使用[InlineAutoData]。在下面的示例中,string参数param1将获取属性中指定的值。 int参数param2将始终是随机的:

[Theory]
[InlineAutoData("predefined_string_1")]
[InlineAutoData("predefined_string_2")]
public void MyTest(string param1, int param2)
{
  ...
}