如何将Cucumber测试添加到预先存在的Gradle项目(Java)?

时间:2018-08-01 05:42:04

标签: java gradle intellij-idea cucumber

我目前有一个大型gradle项目(使用Java和IntelliJ),我想在其中添加Cucumber测试。我已通过此链接概述了一些基本步骤:

http://www.thinkcode.se/blog/2014/08/24/cucumberjvm-hello-world-with-gradle

例如将依赖项和存储库设置添加到我的build.gradle文件中,如下所示:

dependencies {
    testCompile 'info.cukes:cucumber-java:1.2.4'
    testCompile 'info.cukes:cucumber-junit:1.2.4'
    testCompile 'junit:junit:4.12'
}
test {
    testLogging.showStandardStreams = true
    systemProperties System.getProperties()
}

但是,我不确定如何从这里继续。我应该在某个位置创建黄瓜测试吗?

1 个答案:

答案 0 :(得分:0)

Boaz的上述回答似乎奏效。谢谢!

  

在资源子树下定义功能文件,并在与常规junit测试相同的位置处定义步骤-测试子树