1

哪个相当于MbUnit.Framework.RowAttributeMSTest 中的?

我想为 MSTestTestMethod提供不同的数据。这MBUit很简单:

[Row("foo", "bar", "foo bar")]
[Row("fat", "cat", "fat cat")]
[Row("wise", "geek", "wise geek")]
[Test]
public void TestMyConcat(string first, string second, string expected)
{
   string actual = MyConcat(first, second);
   Assert.AreEqual(expected, actual);
}

这是如何在 MSTest 中完成的?

4

1 回答 1

3

AFAIK 在 MSTest 中没有提供直接的等价物。

最接近的是数据驱动测试,它从外部文件中提取数据。

于 2012-07-02T09:48:48.533 回答