运行所有 测试用例 ,并生成 html 格式的报表
具体操作如下:
1.将 junit.jar 放在 ANT_HOME\lib 目录下
2.修改 build.xml ,加入如下 内容:
- <property name="report" value="report" />
- <target name="junitreport" depends="clean, compile">
- <junit printsummary="on"
- fork="true"
- haltonfailure="false"
- failureproperty="tests.failed"
- showoutput="true">
- <classpath refid="myclasspath"/>
- <formatter type="xml"/>
- <batchtest todir="${report}">
- <fileset dir="${build}">
- <include name="**/*Test.*"/>
- </fileset>
- </batchtest>
- </junit>
- <junitreport todir="${report}">
- <fileset dir="${report}">
- <include name="TEST-*.xml"/>
- </fileset>
- <report format="frames" todir="${report}"/>
- </junitreport>
- <fail if="tests.failed">
- ---------------------------------------------------------
- One or more tests failed, check the report for detail...
- ---------------------------------------------------------
- </fail>
- </target>
运行 这个 target ,ant 会运行每个 TestCase
在 report 目录下就有了 很多 TEST*.xml 和 一些网页
打开 report 目录下的 index.html 就可以看到很直观的测试运行报告,一目了然。
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/
领测软件测试网最新更新
关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073