Junit格式化的测试报告

时间:2016-11-10 11:26:00

标签: java junit ant soapui

我正在使用此代码从SOAPUI测试用例生成junit报告。

<target name="gen-reports">
      <junitreport todir="${test.reports}">
         <fileset dir="${test.reports}">
            <include name="TEST-*.xml"/>
         </fileset>
         <report todir="${test.reports}/Report"/>
      </junitreport>
</target>

test.reports是存在SOAPUI报告的数据的文件夹。 报告正在正常生成。但是在错误的一页上它看起来像这样:

This is error image

但是在第二和第三个错误中,它显示HTML标记而不是html页面。 这个错误的原因是什么?

0 个答案:

没有答案