我在@BeforeClass方法中依赖于外部Web服务。依赖性保持超时。我需要重试几次。
@BeforeClass
public void setup() {
//Call to dependency
}
@Test
public void test() {
//The actual test
}
我使用retryAnalyzer重试我的测试。例如
@Test(retryAnalyzer = RetryDecider.class)
public void test() {
//The actual test
}
@BeforeClass有类似内容吗?