7

我使用Hudson作为 Delphi 2010 项目的 CI 服务器。XMLTestRunner.pas 单元将 DUnit 测试结果写入一个 xml 文件,hudson xUnit 插件使用该文件来报告测试结果。xUnit 插件显示失败但没有消息:

Stacktrace

MESSAGE:

+++++++++++++++++++
STACK TRACE:

在“发布测试工具结果报告”的 hudson 项目配置中,我选择“NUnit-Version N/A (default)”作为测试工具,因为列表中没有 dunit 选项并且 xml 文件看起来类似于 nunit 格式:

<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?>
<test-results total="123" notrun="0" date="20.12.2010" time="09:19:24">
<test-suite name="HelloWorldTestSuite" total="46" notrun="0">
<results>
<test-case name="TestCase.HelloWorldTest" execute="True" success="False" time="0,003" result="Failure">
<failure name="ETestFailure" location=""/>
<message>expected: &lt; hello world! &gt; but was: &lt; hallo welt &gt;</message>
</test-case>
...

在 hudson 配置中还有一个“自定义工具”选项,我必须在其中指定一个“自定义样式表”,但我不知道如何编写这样的样式表(是否有任何文档?)。

在我的带有 boost 测试的 C++ 项目上,所有消息都很好地报告了故障。

4

2 回答 2

4

我不得不更改 XMLListener 以使其与 hudson 一起工作,因为失败的 XML 结构必须如下所示:

<testcase name="GetFreeDirNameTest" classname="Test.exe.MyFiles.TTests" result="failed" time="0.000">
  <failure message="Expected:
        &#34;-1&#34;
        But was:
        &#34;0&#34;" type="failed">GetFreeDirNameTest: Expected:
        &#34;-1&#34;
        But was:
        &#34;0&#34;
  </failure>
</testcase>
于 2011-04-15T12:49:49.430 回答
3

XMLTestRunner 用于 DUnit 的 NUnit 兼容输出怎么样?

于 2013-11-21T09:19:45.457 回答