How to run mvn cucumber test using jar file?(如何使用 jar 文件运行 mvn 黄瓜测试?)
问题描述
我已经使用 maven 和 cucumber 创建了一个测试自动化框架.
I have created a test automation framework using maven and cucumber.
1) 我想创建一个包含所有内容(所有项目文件)的 jar 文件
1) I want to create a jar file which includes everything (all project files)
2) 然后我想使用上面创建的 jar 从命令行运行测试,就像使用命令一样
2) Then I want to run a test from the command line using above created jar like using the command
(mvn clean test -Dcucumber.options='--tags @all'
)
我不想使用 main 方法或任何东西.
I don't want to use the main method or anything.
推荐答案
java -Dcucumber.options="--tags @all" -jar your-test-jar.jar
试试这个.虽然我不确定你为什么不想使用 main 方法.如果不使用 main 方法,那就太复杂了.
Try this. Although I am not sure why you don't want to use the main method. If you don't use the main method it will just become too complicated.
更新:
编写一个 main 方法并从中运行 Cucumber main 方法.这些参数是您将作为 Cucumber 命令行参数传入的内容.
Write a main method and run Cucumber main method from it. The arguments are what you would pass in as your Cucumber command line arguments.
public static void main(String[] args) throws Throwable {
String[] arguments = {"a", "b"};
cucumber.api.cli.Main.main(arguments);
}
如果我清楚地理解了您的问题,这可能会完成您的工作.
If I have understood your question clearly, this might do your work.
这应该可以帮助您从可执行文件中运行 Cucumber.
This should help you run Cucumber from your executable.
这篇关于如何使用 jar 文件运行 mvn 黄瓜测试?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 jar 文件运行 mvn 黄瓜测试?
基础教程推荐
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01