2012-10-12 58 views
0

我使用soapui免費版來生成測試用例報告,但它只生成XML格式的junit報告,現在我想將其轉換爲HTML格式。將Junit XML報告轉換爲HTML格式

+1

歡迎來到Stack Overflow!我們鼓勵你[研究你的問題](http://stackoverflow.com/questions/how-to-ask)。如果你已經[嘗試了某些東西](http://whathaveyoutried.com/),請將其添加到問題中 - 如果沒有,請先研究並嘗試您的問題,然後再回來。 – 2012-10-12 09:14:15

回答

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