我有测试功能:
[TestMethod()]
public void CreateTest(string input)
{
string expected = "321";
Assert.AreEqual(expected, input);
}
我需要使用不同的数据运行此测试:CreateTest("321"); CreateTest("123"); CreateTest(null);
在做[TestCase("123")], [TestCase("321")]
我需要一些东西:
[RowTest]
[Row(1,1,2)]
[Row(2,1,3)]
[Row(1,-1,0)]
public void SumTest(int a1, int a2, int result)
{
Assert.AreEqual(a1 + a2, result);
}
答案 0 :(得分:1)
你试过data-driven unit testing吗?它不使用类属性,但它应该给你相同的结果。
如果您想实现高代码覆盖率,请选择look at the Pex power tool。
如果您想为测试建模( MBT ),Spec Explorer is also worth review。