如果Maven / Cucumber测试失败,请执行操作?

时间:2016-02-25 15:55:00

标签: java maven cucumber

我在Maven工作中运行了一组黄瓜测试。如果测试失败,我将如何执行特定操作?

RunnerTest.Java

import org.junit.runner.RunWith;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)
@Cucumber.Options(format = {"html:target/test-report", "json:target/test-report.json", "junit:target/test-report.xml"}, 
features = "src/test/resource"
)
public class RunnerTest {
}

1 个答案:

答案 0 :(得分:0)

我认为您应该使用TestWatcher规则。 更多信息请访问:JUnit on failure callback/method