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

查看:85
本文介绍了如何用黄瓜测试创建可执行的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.

推荐答案

胶水选项的值应为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天全站免登陆