这相当于MSTest中的MbUnit.Framework.RowAttribute
?
我想用不同的数据提供MSTest TestMethod
。在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中完成的?