不是读取特征文件,而是编写方法的名称,添加正确的注释和变量,我想“编译”特征文件并自动生成java测试文件。
有可能吗?你知道一个可以做到这一点的工具吗?
答案 0 :(得分:3)
如果您运行Cucumber-JVM,它将为每个未定义的步骤生成片段。您可以将这些剪切并粘贴到您选择的课程中。
在IntelliJ中运行,您可以使用Alt-Return为步骤生成定义。有一些Eclipse的插件也可以这样做,但我最近没有使用它们。
答案 1 :(得分:0)
你可以设置dryRun=true
,它应该显示所有缺失的步骤。
@RunWith(Cucumber.class)
@CucumberOptions( monochrome = true,
tags = "@tags",
features = "src/test/resources/features/",
format = { "pretty","html: cucumber-html-reports",
"json: cucumber-html-reports/cucumber.json" },
dryRun = true,
glue = "glue_code_folder" )
public class RunCucumber_Test {
//Run this
}