1
MSTest中相當於MbUnit.Framework.RowAttribute
?什麼是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的做了什麼?