用于电子邮件的 JUnit 报告单页 XSLT
我有一个 Junit 进程,每天晚上都会运行大量数据完整性测试,我希望它以格式良好的 HTML 电子邮件形式通过电子邮件发送结果。问题是 JUnit 中内置的 HTML 格式化程序使用框架和外部样式表,因此它不适合电子邮件。普通格式化程序将结果埋在一堆原本毫无价值的数据中间。
我认为找到一个将 XML 输出格式化为电子邮件友好格式的 XSLT 样式表会很简单,但是经过几个小时的谷歌搜索后,我还没有找到一个。如果你们中有人有一个适合电子邮件的 Junit 格式化程序,我将不胜感激。
I have a Junit process that runs a bunch of data integrity tests every night, and I would like to have it email the results in a nicely formatted HTML email. The issue is the HTML formatter built into JUnit uses frames and an external stylesheet so it is not appropriate for email. The plain formatter has the results buried in the midst of a bunch of otherwise worthless data.
I thought it would be simple to find a XSLT stylesheet that formatted the XML output into an email-friendly format, but after a couple hours of googling, I have not been able to find one. If any of you have a email-friendly Junit formatter, I'd be eternally grateful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 http://ant.apache.org/manual/Tasks/junitreport.html
编辑:此处
From http://ant.apache.org/manual/Tasks/junitreport.html
Edit: The only web aviable source in here
使用 Ant 的
创建 HTML 报告并通过电子邮件发送该报告。Use the one that Ant's
<junitreport>
to create the HTML report and email that.