如果预期变量是整数,它就像这样
[DataRow(2)]
[TestMethod]
public void TestMethod(int expected)
{
// some code...
}
但是当有二维数组 int[,] 而不是 int 参数时应该怎么办?当我尝试这样做时
[DataRow(new int[,] { {0, 0}, {0, 0} })]
[TestMethod]
public void TestMethod(int[,] expected)
{
// some code...
}
错误说
属性参数必须是属性参数类型的常量表达式、typeof 表达式或数组创建表达式