我正在查看空手道文档: https://github.com/intuit/karate#command-line
我的文件如下:
亚军类:
import org.junit.runner.RunWith;
import com.intuit.karate.junit4.Karate;
import cucumber.api.CucumberOptions;
@RunWith(Karate.class)
@CucumberOptions(features = "classpath:feature/country.feature")
public class APITest {}
将它放到我的build.gradle:
test {
// pull cucumber options into the cucumber jvm
systemProperty "cucumber.options", System.properties.getProperty("cucumber.options")
// pull karate options into the jvm
systemProperty "karate.env", System.properties.getProperty("karate.env")
// ensure tests are always run
outputs.upToDateWhen { false }
}
我试图像这样跑步:
./gradlew test -Dtest=APITest
但我得到了这样的答复:
Rafaels-MacBook-Pro:TestProject rafaelpaz$ ./gradlew test -Dtest=APITest
:compileJava UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:compileTestJava
:processTestResources UP-TO-DATE
:testClasses
:test
但是,我无法看到我的测试是否通过。我做错了什么?
Gradle版本:2.14.1
答案 0 :(得分:2)
https://github.com/SreecharanShroff/demos/blob/master/gradle_karate_demo.zip 有一个工作gradle空手道演示项目,请根据您的要求更改.feature文件。 使用方法:
gradle clean test
如果您需要更多信息,请告诉我
谢谢,
Sreecharan Shroff