我尝试使用Intellij IDEA和Gradle运行单个Cucumber测试。
我收到了以下错误:
> No tests found for given includes: [mypackage.CucumberTest]
我有以下CucumberTest类:
@RunWith(Cucumber.class)
@CucumberOptions(plugin = {"pretty", "html:target/cucumber"})
public class CucumberTest {
}
如果我用gradle test
运行所有测试,Cucumber测试运行正常。
如果我使用Intellij JUnit构建配置运行单个Cucumber测试 黄瓜测试运行正常。
如何使用Intellij Gradle构建配置使单个Cucumber测试运行良好?
UPD:
添加空测试可用作解决方法:
@Test
public void dummyTest(){}