Java 8 和 Cucumber 不 运行 使用 lambdas 方法的步骤文件
Java 8 and Cucumber don't run the step files with lambdas methods
我有一个很大的问题,我已经尝试解决这个问题,但所有时间都是一样的。
我有这种情况与黄瓜
feature file
这是步骤文件
steps' file
最后我 运行 和
package Steps;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(
features = {"./src/test/java/features"},
glue = {"./src/test/java/Steps"},
plugin = {"pretty", "html:reports/cucumber-html-report","json:cucumber.json"}
)
public class Orquestador {
}
而intellij的consolo是这样出现的:
ans
这些都是我的文件
Files
我正在使用 Mac OS
谢谢:)
Cucumber 找不到您的步骤定义。在 运行 功能文件时,为步骤定义的位置提供正确的 "glue"。
我有一个很大的问题,我已经尝试解决这个问题,但所有时间都是一样的。 我有这种情况与黄瓜
feature file
这是步骤文件
steps' file
最后我 运行 和
package Steps;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(
features = {"./src/test/java/features"},
glue = {"./src/test/java/Steps"},
plugin = {"pretty", "html:reports/cucumber-html-report","json:cucumber.json"}
)
public class Orquestador {
}
而intellij的consolo是这样出现的:
ans
这些都是我的文件 Files
我正在使用 Mac OS
谢谢:)
Cucumber 找不到您的步骤定义。在 运行 功能文件时,为步骤定义的位置提供正确的 "glue"。