标签: testing automation testng
我希望使用@BeforeClass批注运行一个方法两次(或更多次)。有没有办法用TestNG做到这一点?
例如:@Test(invocationCount = 2)?
答案 0 :(得分:1)
在TestNG中没有这样的规定。
@BeforeClass是一种配置方法,旨在在执行特定类中的任何@Test方法之前恰好运行一次。
@BeforeClass
@Test
因此无法改变其行为。