将数组作为attribute-value传递

时间:2016-07-11 10:18:24

标签: c# attributes nunit

我有一个测试方法如下:

[TestCase(new string[] { "1", "2", "5" }, Result = true)]
bool AllocateIDsTest1(IEnumerable<string> expected)
{
    var target = ...
    var actual = target.AllocateIDs(expected);

    return actual.SequenceEqual(expected);
}

但是我收到编译器错误:

  

属性参数必须是属性参数类型的常量表达式,typeof表达式或数组创建表达式。

编译器可能无法区分以下构造函数:

TestCase(params object[] args, Named Parameters);

TestCase(object ob1, Named Paramaters);

因为new string[] { "1", "2", "5" }可以解析为params object[]object

this post我知道字符串数组应该可以作为编译常量传递。

如何为TestCase提供字符串数组?

1 个答案:

答案 0 :(得分:3)

我找到了使用params方法的解决方案:

[TestCase("1", "2", "5", Result = true)]
public bool AllocateIDsTest1(params string[] expected)
{
    var target = ...
    var actual = target.AllocateIDs(expected);

    return actual.SequenceEqual(expected);
}