类级别 nunit 上的顺序属性
是否有类似于 顺序属性
我可以把它放在课堂上。 并在类级别而不是特定测试级别使用顺序变量,因为它与顺序属性一起使用。
我只需运行与我们正在使用的变量组合相关的 TestFixtureSetUp 即可。
谢谢
Is there something similar to Sequential Attribute
that I can put on the class itself.
And use the Sequential variables on the class level and not on a specific test level as it works with Sequential Attribute
.
I just have to run TestFixtureSetUp related to the combination of the variables we are using .
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参数化测试装置怎么样?您可以在 TestFixture c'tor 中传递参数列表,例如:
How about Parameterized Test Fixtures? You could pass the list of parameters in your TestFixture c'tor, e.g: