0
我如何標註我的MbUnit的測試與測試數據源屬性像NUnit的:測試數據源像NUnit的
僞像它在NUnit的:
[TestCaseSource("GetData")]
public void Test(int value)
{
}
private static IEnumerable<int> GetData()
{
yield return 1;
yield return 2;
yield return 3;
}