将Junit XML报告转换为HTML表单

时间:2012-10-12 09:09:35

标签: junit soapui

我使用soapui免费版本来生成测试用例的报告,但它只是以XML格式生成junit报告,现在我想将其转换为HTML表单。

1 个答案:

答案 0 :(得分:1)

有几种方法可以做到这一点,但你可以简单地使用XSL转换(junitreport option) 正如这个答案所建议的How can I generate an HTML report for Junit results?

<junitreport todir="${outputdir}">
    <fileset dir="${jrdir}">
        <include name="TEST-*.xml"/>
    </fileset>
    <report todir="${outputdir}/html"
        styledir="junitreport"
        format="frames">
        <param name="key1" expression="value1"/>
        <param name="key2" expression="value2"/>
    </report>
</junitreport>

我还建议考虑使用TestNG的可能性,请在此处查看所有详细信息https://stackoverflow.com/questions/12768214/testng-or-junit-in-java/12768737#12768737