4

如何将string[][]数组传递给 ValuesAttribute?

我有:

public string[][] Array1 = new[] {new[] {"test1", "test2"}};
//...
[Test, Sequential]
public void SomeTest(
    [Values("val1", "val2", "val3")] string param1, 
    [Values(Array1, Array2, Array3)] string[][] param2) { //... }

我有Cannot access non-static field "Array1" in static context。比我Array1static关键字标记,比我得到An attribute argument must be a constant expression...的比我用关键字标记它,readonly我仍然有An attribute argument must be a constant expression...

这里有什么方法可以传递多个数组吗?(除了相关的丑陋string[][][]和通过param2索引)array[][]array[][][]

4

1 回答 1

5

有可能的。但是您需要使用TestCaseSourceAttribute而不是Sequentialand Values

看一个例子:

object[][] testCases = new[] {

    // test case 1
    new object[] {
        "val1",
        new[] { "test11", "test12" }
    },

    // test case 2
    new object[] {
        "val2",
        new[] { "test21", "test22" }
    },

    // test case 3
    new object[] {
        "val3",
        new[] { "test31", "test32", "test33", "test34" }
    }
};

[Test]
[TestCaseSource("testCases")]
public void SomeTest(string param1, string[] param2)
{
    ...
}

这里的另一个好处是:测试用例组织得更好,并且可以在多个测试中轻松重用。

于 2013-04-23T18:53:27.590 回答