如何解决@CucumberOptions中格式选项的弃用?

时间:2015-06-30 12:16:58

标签: java cucumber

当我在@CucumberOptions中使用选项 format 作为测试报告时,它显示已弃用格式选项如何解决该问题。

@CucumberOptions( monochrome = true, format = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })

1 个答案:

答案 0 :(得分:16)

格式替换为插件

@CucumberOptions( monochrome = true,plugin = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })