用于电子邮件的 JUnit 报告单页 XSLT

发布于 2024-09-18 20:18:14 字数 257 浏览 3 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(2

汹涌人海 2024-09-25 20:18:14

来自 http://ant.apache.org/manual/Tasks/junitreport.html

Ant 假设以下内容
framesnoframes 格式:

frames 格式使用样式表
仅通过以下方式产生输出
重定向。

不使用noframes格式
重定向并生成一个文件
称为junit-noframes.html

junit-frames.xsl 的自定义版本或
junit-noframes.xsl 必须遵守
以上约定。

编辑此处

From http://ant.apache.org/manual/Tasks/junitreport.html

Ant assumes the following concerning
the frames and noframes formats :

The frames format uses a stylesheet
which is generating output only by
redirecting.

The noframes format does not use
redirecting and generates one file
called junit-noframes.html.

Custom versions of junit-frames.xsl or
junit-noframes.xsl must adhere to the
above conventions.

Edit: The only web aviable source in here

‘画卷フ 2024-09-25 20:18:14

使用 Ant 的 创建 HTML 报告并通过电子邮件发送该报告。

Use the one that Ant's <junitreport> to create the HTML report and email that.

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