我使用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: < hello world! > but was: < hallo welt ></message>
</test-case>
...
在 hudson 配置中还有一个“自定义工具”选项,我必须在其中指定一个“自定义样式表”,但我不知道如何编写这样的样式表(是否有任何文档?)。
在我的带有 boost 测试的 C++ 项目上,所有消息都很好地报告了故障。