我正在使用SoapUI免费版本,并且已经使用apache ant生成测试执行报告。
当我构建soap项目时,我得到了一个带有通过和失败测试用例详细信息的html文件。我想知道有什么方法可以在这里包含通过和失败的测试步骤详细信息(计数),而不是测试用例计数详细信息。
这是我的构建文件脚本
<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>