使用Apache ant构建soapUI项目时如何在报告中获取测试步骤详细信息

时间:2019-02-25 11:59:20

标签: java junit ant soapui

我正在使用SoapUI免费版本,并且已经使用apache ant生成测试执行报告。

当我构建soap项目时,我得到了一个带有通过和失败测试用例详细信息的html文件。我想知道有什么方法可以在这里包含通过和失败的测试步骤详细信息(计数),而不是测试用例计数详细信息。

this is the test execution report currently i get

这是我的构建文件脚本

   <target name="testreport" depends="execute.project">

          <junitreport todir="D:\soapReport">
            <fileset dir="D:\soapReport">
               <include name="TEST-*.xml"/>
            </fileset>
            <report format="frames" todir="D:\soapReport">          
             <param name="TITLE" expression="${junit.configuration} test results." />  
                </report>


         </junitreport>

0 个答案:

没有答案