• 测试技术
  • 博客
  • 视频
  • 开源
  • 论坛
  • 沙龙
  • 下载
  • 杂志
  • 招聘

字号: | 推荐给好友 上一篇 | 下一篇

使用 Ant 自动生成项目构建版本

发布: 2008-6-25 14:40 | 作者: 不详 | 来源: 领测软件测试网编辑整理 | 查看: 87次 | 进入领测软件测试网论坛讨论

领测软件测试网

)QZ Ifl&n3\#d

Kg&ylc;p?运行预部署单元测试
Ance;O此步骤调用 JUnit 测试用例,这些用例不需要运行时资源(如数据源等)。我们假定您已经获得了运行此步骤所需的此类测试用例。清单 7 说明了如何在工作区调用所有 JUnite 测试用例,并假设全部都以单词“Test”作为结尾。当然,如果命名约定不同,则可以对此进行相应的更改。

Mm'X byF 软件测试技术门户j"uq(n H)g:S

 软件测试技术门户2_,}7M8z(L,t

软件测试技术门户b2nX$k/c-`?Mc}

清单 7. 调用 JUnit 测试用例
q5\]8c6z|)I"u                        软件测试技术门户 t0u+QC%|1@*E b
<target name="predeptests" description="Invoke pre-deployment JUnit test cases">软件测试技术门户"? ]LuWsfYz
 <!-- Run JUnit and print a summary when done. -->软件测试技术门户^.UahJs8V
  <junit printsummary="yes" haltonfailure="no">软件测试技术门户_G@:_`r BIA
  <classpath>
1x;f{%f)VY4?'Q#Ro@B  <!--
-s"S"Du r  Set the class path to include all needed classes that are used by the JUnit test cases.软件测试技术门户)a uU1{"Y:l
  -->
A.^'WBt"SeY  </classpath>软件测试技术门户9\!C\*]y!VP
  <!-- Generate reports in an XML format -->
{ V6FERH k  <formatter type="xml" />
r!N'\Q+EO&J/S/n  <!-- Run a batch of JUnit test cases and generate reports to the report directory. -->软件测试技术门户(|~]bx3r^sO
  <batchtest fork="yes" todir="${report.dir}">软件测试技术门户+\#d/Rw4I'X8_
  <fileset dir="${workspace.dir}/">
Gx8g7YH!j/@  <!-- Include all .java files that end with "Test" -->
@ } l4kEU-C`  <include name="**/*Test.java" />软件测试技术门户|L*H,E Zjl6_
  </fileset>
y"b;K6DB  </batchtest>
x,h il4U ?)~Z n*?