TestNG 的组
如果我们有
和
,TestNG 会运行属于 web 或周末。
是否可以更改此行为,以便 TestNG 运行属于网络和周末的所有方法?有谁知道如何实现这一目标?
If we have <include name="web" >
and <include name="weekend" >
, TestNG runs all the methods that belong to either web or weekend.
Is it possible to change this behaviour so TestNG would run all the methods that belong to web and weekend? Does anyone knows a way to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,BeanShell 是一种方法。
如果您需要更复杂的东西,您可以使用 IMethodInterceptor,它基本上可以让您在 TestNG 开始处理所有测试方法之前重新排序它们。
这是一个示例:
http://beust. com/weblog/2008/03/29/test-method-priorities-in-testng/
Yes, BeanShell is one approach.
If you need something more sophisticated, you can use an IMethodInterceptor, which basically lets you reorder all the test methods before TestNG starts processing them.
Here is an example:
http://beust.com/weblog/2008/03/29/test-method-priorities-in-testng/
我找到了解决方案。
我使用 beanshell 在
标记内编写我的条件。像这样的东西:
i've found a solution.
i used beanshell to script my conditions inside the
<method-selector>
tag.something like: