如何使用黄瓜测试创建可执行 jar 文件? [英] how to create executable jar file with cucumber tests?

查看:41
本文介绍了如何使用黄瓜测试创建可执行 jar 文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的服务通过 gradle 创建一个可执行的 jar.当我创建并运行我的 jar (java -jar file.jar) 我收到错误:

My service create an executable jar by gradle. When i create and run my jar (java -jar file.jar) i recive error:

no main manifest attribute, in "file.jar"

因为我没有 main_class.

because i don't have main_class.

我创建了 main 方法:

I created main method:

public static void main(final String[] args) throws Throwable {
String[] arguments = {"--plugin", "html:build/reports/cucumber", "src/test/resources/features", "--glue", "src/test/java/steps"};
cucumber.api.cli.Main.main(arguments);

}

而我的程序找到了功能但没有找到胶水代码.

and My program founds the features but doesn't found glue code.

有人可以帮我解决这个问题吗?提前谢谢你.

Could someone help me with this problem? Thank you in advance.

推荐答案

glue 选项的值应该是 java 类路径.并且功能文件应该是最后一个选项.

The value for the glue option should be a java classpath. And the feature files should be the last option.

{"--plugin", "html:build/reports/cucumber", "--glue", "steps", "src/test/resources/features"}

这篇关于如何使用黄瓜测试创建可执行 jar 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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