我有一个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中使用Name Outcome和Attachments
运行它时,它会显示出来但是当我在其上运行ReportUnit时,附件不会显示(在通过测试或测试失败时。)