仅在某些时候执行 TestSetup?
在一个固定装置中,是否可以以这样一种方式标记测试,即仅对某些测试调用测试设置,而对其他测试则不调用测试设置?
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有任何属性可以实现您想要的功能。
我建议将您的测试用例重构为两个单独的类,它们从抽象测试类继承基本功能。每个测试类可以有自己的设置方法。
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.