2016-08-23 36 views

回答

0

不確定「clickable」是什麼意思,但您將從運行Cucumber測試套件生成的報告中獲得完整概述。您有兩個內置的報告生成選項,JSON和HTML格式。您可以配置使用@CucumberOptions這樣的:

@CucumberOptions(features = {"..."}, format = { 
     "json:target/cucumber-dev/cucumber.json", "pretty"}, ...) 

@CucumberOptions(features = {"..."}, format = { 
     "html:target/cucumber-dev/cucumber.html", "pretty"}, ...)