仅在某些时候执行 TestSetup?

发布于 2024-09-03 22:07:07 字数 201 浏览 1 评论 0原文

在一个固定装置中,是否可以以这样一种方式标记测试,即仅对某些测试调用测试设置,而对其他测试则不调用测试设置?

[Test] public void TestWithoutSetup() { .. }
[Test] public void TestWithSetup() { .. }

我需要做什么才能使上述工作正常进行?

Within one fixture is it possible to markup tests in such a way that the test-setup is only called for some tests and not for others?

[Test] public void TestWithoutSetup() { .. }
[Test] public void TestWithSetup() { .. }

What would I need to do make the above work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

娇俏 2024-09-10 22:07:08

没有任何属性可以实现您想要的功能。

我建议将您的测试用例重构为两个单独的类,它们从抽象测试类继承基本功能。每个测试类可以有自己的设置方法。

There's no attribute to accomplish what you want.

I would suggest refactoring your test cases into two separate classes that inherit base functionality from an abstract test class. Each test class can have its own setup method.

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