你能更好地解释一下 TestNG 的 @BeforeTest 注释的语义吗?
I read the relevant documentation and didn't understand it. See also this question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
I read the relevant documentation and didn't understand it. See also this question.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
要理解这一点,您必须理解
testng.xml
。现在重读同样的事情,应该清楚的是,此注释仅适用于属于
testng.xml
中
标记下定义的类的方法。To understand that, you must understand
testng.xml
. Now reread the same thing,It should be clear that this annotation will only work with the methods those belong to the classes defined under
<test>
tag intestng.xml
.