使用命令行从 jar 运行黄瓜测试执行 --tags @my-tag [英] Run cucumber test execute from jar with command line --tags @my-tag

查看:39
本文介绍了使用命令行从 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" });
    }
}

不需要 RunWithCucumberOptions 注释.将 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆