MbUnit.Framework.RowAttribute
MSTestと同等のものはどれですか?
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 でどのように行われますか?