如何更改 Maven2 中的 JUnit 转换

发布于 2024-09-19 04:02:19 字数 534 浏览 3 评论 0 原文

我有使用 Maven2 构建的 Java 项目。使用 JUnit 框架进行测试(和 Selenium,但无关紧要)。我想将屏幕截图(我有)添加到测试结果中。在这里,我发现类似的问题解决了这个问题,但是用Ant。我想知道是否有任何选项如何使用 Maven2 而不是 Ant 来管理它,或者是否有其他解决方案如何将屏幕截图添加到测试结果中。

为了在 Maven 中进行测试,我使用 Maven Surefire 插件Maven Surefire 报告插件

非常感谢。

I have Java project built with Maven2. There is used JUnit framework for testing ( and Selenium but it is irrelevant ). I would like to add screenshot ( I have it ) into result of tests. Here, on SO, I found similar question which solves it but with Ant. I would like to know if there is any option how to manage it with Maven2 instead of Ant or if there is other solution how to add screenshot into test results.

For testing in Maven I am using Maven surefire plugin and Maven surefire report plugin

Thanks a lot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小姐丶请自重 2024-09-26 04:02:19

不幸的是,我认为如果不修补 Maven Surefire 报告插件,这并不容易实现。报告插件采用 Surefire XML 报告并使用 Doxia 库生成 maven HTML 报告。

生成报告的类位于:

http://maven.apache.org/plugins/maven-surefire-report-plugin/xref/org/apache/maven/plugins/surefire/report/SurefireReportGenerator.html

修补这个类改变报告输出几乎是简单的;但是,它需要维护 Surefire 报告插件的自定义版本。

Unfortunately I don't think it is easily feasible without patching the maven surefire report plugin. The report plugin takes the surefire XML report and generates the maven HTML report using the Doxia library.

The class generating the report is here:

http://maven.apache.org/plugins/maven-surefire-report-plugin/xref/org/apache/maven/plugins/surefire/report/SurefireReportGenerator.html

Patching this class to alter to report output is almost straightforward; however it requires maintaining a custom version of the surefire report plugin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文