如何更改 Maven2 中的 JUnit 转换
我有使用 Maven2 构建的 Java 项目。使用 JUnit 框架进行测试(和 Selenium,但无关紧要)。我想将屏幕截图(我有)添加到测试结果中。在这里,我发现类似的问题解决了这个问题,但是用Ant。我想知道是否有任何选项如何使用 Maven2 而不是 Ant 来管理它,或者是否有其他解决方案如何将屏幕截图添加到测试结果中。
为了在 Maven 中进行测试,我使用 Maven Surefire 插件 和 Maven Surefire 报告插件
非常感谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,我认为如果不修补 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.