当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:12:00  来源:本站整理

在eclipse中操纵Ant实施JUnit[Java编程]

赞助商链接



  本文“在eclipse中操纵Ant实施JUnit[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

成立工程:

在eclipse中成立一个java project.

AntTest
-src
-com.test
-ABS.java
-ABSTest.java (Junit Test Case)
-lib
-build.xml
-JUNIT_HOME/junit.jar
配置:

eclipse->window->preference->ANT->Runtime->Classpath->ANT Home Entry

挑选Add External JAR,加入ECLIPSE_HOME/plugins/org.junit.../junit.jar

build.xml的内容:

1
2 <? xml version="1.0" ?>
3 < project name ="project" default ="junit" >
4 < property name ="run.classpath" value ="bin" ></ property >
5 < property name ="run.srcpath" value ="src" ></ property >
6 < property name ="test.srcpath" value ="src" ></ property >
7 < property name ="test.report" value ="report" ></ property >
8 < property name ="lib.dir" value ="lib" />
9 < path id ="compile.path" >
10 < fileset dir ="${lib.dir}" >
11 < include name ="**/*.jar" />
12 </ fileset >
13 </ path >
14 < target name ="compile" >
15 < javac destdir ="${run.classpath}" srcdir ="${run.srcpath}" classpathref ="compile.path" />
16 < javac destdir ="${run.classpath}" srcdir ="${test.srcpath}" classpathref ="compile.path" />
17 </ target >
18 < target name ="junit" depends ="compile" >
19 < tstamp />
20 < mkdir dir ="${test.report}" />
21 < mkdir dir ="${test.report}/framework-${DSTAMP}-${TSTAMP}" />
22 < junit printsummary ="true" >
23 < classpath >
24 < pathelement path ="${run.classpath}" />
25 < fileset dir ="${lib.dir}" >
26 < include name ="**/*.jar" />
27 </ fileset >
28 </ classpath >
29 < formatter type ="plain" />
30 < batchtest fork ="yes" todir ="${test.report}/framework-${DSTAMP}-${TSTAMP}" >
31 < fileset dir ="${test.srcpath}" >
32 < include name ="**/*Test.java" />
33 </ fileset >
34 </ batchtest >
35 </ junit >
36 </ target >
37 </ project >
运行:

右键build.xml->run as "Ant Build".

后果:

掌握台有输出后果,比方:

Buildfile: C:Documents and SettingsqianwangMy DocumentsDSMPWorkspaceAntTestbuild.xml
compile:
junit:
[mkdir] Created dir: C:Documents and SettingsqianwangMy DocumentsDSMPWorkspaceAntTestreportframework-20070201-1712
[junit] Running com.test.ABSTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0 sec
BUILD SUCCESSFUL
Total time: 19 seconds
同时,AntTest/report(假如没有自动成立的目录)中,产生.txt格局的文本文件.

后果文件中,会指出运行了哪些testcase(指出被测试的办法名test**).

假若有failures/errors,非常的具体信息也会输出在这里.


  以上是“在eclipse中操纵Ant实施JUnit[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • <b>在Eclipse中操作XMLBuddy开辟XML</b>
  • <b>在Eclipse中操纵ANT机动构建Web操纵</b>
  • <b>在Eclipse中成立新的重构功效</b>
  • 在Eclipse顶用SWT筹划界面
  • 在Eclipse中构建备忘单
  • 在Eclipse中去掉多余的UI组件的几个办法
  • 在Eclipse Galileo中轻松导航:快速找到所需内容
  • 在Eclipse上操纵XFire开辟WebService
  • 在Eclipse中轻松操纵Ant
  • 在Eclipse中开辟Apache Derby操纵程序
  • JSF在Eclipse和NetBeans操纵的对比
  • 在Eclipse顶用Java实现百灵报表(BIRT)的事件处理
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .