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



我目前有一个大型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()
}

然而,我不知道如何从这里开始。我应该在某个地方创建Cucumber测试吗??

Boaz上面的回答似乎奏效了。谢谢

在resources子树下定义您的功能文件,并在与普通junit测试相同的位置定义您的步骤-测试子树

相关内容

  • 没有找到相关文章

最新更新