gpt4 book ai didi

java - Cucumber Runner 类未运行步骤定义

转载 作者:行者123 更新时间:2023-11-30 10:14:56 27 4
gpt4 key购买 nike

我正在使用 Cucumber 和 Java 编写自动化测试。

我可以通过右键单击我的功能文件并将其作为 Cucumber 功能运行来运行步骤定义,所有步骤都成功通过。

但是,我需要使用 Runner 类来运行它们。

我的特征文件在这个文件夹中:

src/test/java/features

我的步骤定义在这个文件夹中:

src\test\java\com\abc\commercial\def\automation

我的Runner Class也存储在

src\test\java\com\abc\commercial\def\automation

这是 Runner 类代码:

@RunWith(Cucumber.class)
@CucumberOptions(
plugin = {"progress",
"html:build/report/html",
"junit:build/report/junit/cucumber-report.xml",
"json:build/report/json/cucumber-report.json"
},
glue = {"src\\test\\java\\com\\abc\\commercial\\def\\automation"},
features = {"src/test/java/features"}
)
public class QARunner {

public static void main(String[] args) {
// TODO Auto-generated method stub

}
}

当我将 Runner 类作为 JUnit 测试运行时,我在控制台中收到以下响应:

UUUUUUUUU

Undefined scenarios:
src/test/java/features/US46052
src/test/java/features/postFeatures.feature:43 # As the

2 Scenarios (2 undefined)
9 Steps (9 undefined)
0m0.303s


You can implement missing steps with the snippets below:

@Given("the Application...")
public void the_Application...() {

因此未选取步骤定义。

这与我的测试运行器所在的位置有关吗?我不认为它正在获取 automation 文件夹中的步骤定义

感谢您的帮助

最佳答案

试试这个:不需要 main 方法。 glue 选项应该是包样式。

@RunWith(Cucumber.class)
@CucumberOptions(
plugin = {"progress",
"html:build/report/html",
"junit:build/report/junit/cucumber-report.xml",
"json:build/report/json/cucumber-report.json"
},
glue = {"com.abc.commercial.def.automation"},
features = {"src/test/java/features"}
)
public class QARunner {

}

关于java - Cucumber Runner 类未运行步骤定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50723798/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com