VS 单元测试框架中 NUnit 的 TestCaseAttribute 等效项

发布于 2024-08-24 06:44:54 字数 261 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

意中人 2024-08-31 06:44:54

遗憾的是,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文