1

我有一个 NUNIT 测试套件,可以正确生成带有附件的 xml 文件,但找不到是否有办法让 ReportUnit 在呈现的 HTML 中显示这些附件。

示例 - TestResult.xml 包含:

<test-case id="0-1091" name="TestName" fullname="NUnitTestProject1.TestName" methodname="MethodName" classname="ClassName" runstate="Runnable" seed="92684126" result="Passed" start-time="2018-01-30 22:21:55Z" end-time="2018-01-30 22:21:55Z" duration="0.030017" asserts="5">
<properties />
<attachments>
<attachment>
<filePath>C:\Output\Result1.json</filePath>
<description><![CDATA[Request]]></description>
</attachment>
<attachment>
<filePath>C:\Output\Result2.png</filePath>
<description><![CDATA[Response]]></description>
</attachment>
</attachments>
</test-case>

当我在 Visual Studio 中使用名称结果和附件运行它时,它会显示出来

视觉工作室结果

但是当我在其上运行 ReportUnit 时,附件不显示(在通过测试或失败测试中。)

4

0 回答 0