Run cucumber test execute from jar with command line --tags @my-tag(使用命令行从 jar 运行黄瓜测试执行 --tags @my-tag)
问题描述
我使用 maven-assembly-plugin 选项构建了一个黄瓜测试可执行 jar,并成功运行了在其中运行所有黄瓜测试的可执行 jar.
I have built a cucumber test executable jar using the maven-assembly-plugin option and was successfully run the executable jar that run all the cucumber test within it.
但是,我喜欢尝试使用在命令行上指定的可选标签来运行可执行文件,但似乎无法这样做.任何帮助和建议将不胜感激.
However, I like to try to run the executable with optional tags specified on the command line but could not seem to do so. Any help and suggestion would be greatly appreciate.
我的示例代码在github:
My sample code is in github:
https://github.com/txt8888/cucumber-executable
推荐答案
您可以使用 io 中
包.Main
类的 main()
方法.cucumber.core.cli.Main
You could use the main()
method of the Main
class from the io.cucumber.core.cli.Main
package.
public class DreamCarMain {
public static void main(String[] args) {
Main.main(new String[] { "-g", "org.phan.kata.cucumber.integration.stepdefs", "-p", "pretty", "-t", args[0], "classpath:features" });
}
}
不需要 RunWith
和 CucumberOptions
注释.将 TagExpression 替换为您想要执行的任何标签.如果您想在调用后执行一些操作,请使用 run()
方法而不是 main()
.
There is no need for the RunWith
and CucumberOptions
annotation. Replace the TagExpression with whatever tags u want to execute. If you want to do some action after the call then use the run()
method instead of the main()
.
java -jar cucumber-integration-1.0.0-jar-with-dependencies.jar @TagExpression
这篇关于使用命令行从 jar 运行黄瓜测试执行 --tags @my-tag的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用命令行从 jar 运行黄瓜测试执行 --tags @my-tag


- 未找到/usr/local/lib 中的库 2022-01-01
- 转换 ldap 日期 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 获取数字的最后一位 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01