标签: c# visual-studio unit-testing nunit vs-unit-testing-framework
在Visual Studio 2008单元测试框架中是否有NUnit的TestCaseAttribute等效 ?
你知道,像这样:
[TestCase(1, 1, 1)] [TestCase(2, 2, 2)] [TestCase(3, 3, 3)] public void Test1(int a, int b, int c) { // do stuff depending on the TestCase }
答案 0 :(得分:2)
不幸的是,MSTest不支持这种方式的参数化测试。您获得的最接近的是DataSource属性,该属性允许您为测试方法指定外部数据源。