VS 单元测试框架中 NUnit 的 TestCaseAttribute 等效项
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
}
Is there an NUnit's TestCaseAttribute equivalent in Visual Studio 2008 unit test framework?
You know, something like this:
[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
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
遗憾的是,MSTest 不支持这种方式的参数化测试。您得到的最接近的是 DataSource 属性,允许您为测试方法指定外部数据源。
MSTest unfortunately doesn't support parameterized tests in this way. The closest you get is with the DataSource attribute, which allows you to specify an external data source for the test method.