3

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 
}
4

1 回答 1

2

不幸的是,MSTest 不支持这种方式的参数化测试。最接近的是DataSource属性,它允许您为测试方法指定外部数据源。

于 2010-03-10T08:29:32.787 回答