是否可以从黄瓜小黄瓜功能文件生成java测试存根文件?

时间:2014-02-16 16:48:37

标签: java cucumber bdd gherkin cucumber-jvm

不是读取特征文件,而是编写方法的名称,添加正确的注释和变量,我想“编译”特征文件并自动生成java测试文件。

有可能吗?你知道一个可以做到这一点的工具吗?

2 个答案:

答案 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
}