分类:
2008-09-09 17:21:20
看标题就知道,这个是开发一个应用的利器组合,使用Ant完成工程的构建(Build),使用JUnit完成单元测试,使用Cobertura完成代码覆盖测试,也可以辅助查找性能瓶颈和一些类型的BUG,下面是一个完整的build.xml范例,可以完全拿来用,不需任何修改,只要你的目录和这里的目录一致(应该也是很通用的):
下面的build.xml文件
文件内容:
target: init
initialize the build env
- - - - - - - - - - - - - - - - - –>
target: compile-test
compile the test cases
- - - - - - - - - - - - - - - - - –>
target: test
run the unit test
================================= –>
[1]