哪个相当于MbUnit.Framework.RowAttribute
MSTest 中的?
我想为 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 中完成的?