锘??xml version="1.0" encoding="utf-8" standalone="yes"?>yw193.com尤物在线,久久福利毛片,日韩精品中文字幕吗一区二区http://www.aygfsteel.com/suplayer/category/32684.html鏂逛究鑷繁鏌ラ槄錛屼粎姝よ屽凡錛?/description>zh-cnFri, 12 Jun 2009 08:04:16 GMTFri, 12 Jun 2009 08:04:16 GMT60鐢ˋnt緙栬瘧銆乯unit嫻嬭瘯銆佺敓鎴愭祴璇曟姤鍛娿佹渶緇堣嚜鍔ㄥ彂mail http://www.aygfsteel.com/suplayer/archive/2009/04/09/264615.htmlsuplayersuplayerThu, 09 Apr 2009 04:35:00 GMThttp://www.aygfsteel.com/suplayer/archive/2009/04/09/264615.htmlhttp://www.aygfsteel.com/suplayer/comments/264615.htmlhttp://www.aygfsteel.com/suplayer/archive/2009/04/09/264615.html#Feedback0http://www.aygfsteel.com/suplayer/comments/commentRss/264615.htmlhttp://www.aygfsteel.com/suplayer/services/trackbacks/264615.html
嫻嬭瘯閫氳繃鐨勭増鏈涓?
Eclipse:3.3.2
jdk:1.6
junit:3.8
ant:1.7(1.7涔嬪墠鐨勭増鏈ソ鍍忚繕涓嶆彁渚沵ail鍔熻兘銆傘傘?

<!-- JUnit build script using ant 1.7 -->
<project name="JunitTestProject" default="mail" basedir=".">
 <property name="app.name" value="JunitTestProject" />
 <property name="build.dir" value="bin" />

 <!-- ====================" path  define  " ================================ -->
 <path id="cobertura.classpath">
  <fileset dir="lib/coberture">
   <include name="cobertura.jar" />
   <include name="*.jar" />
  </fileset>
 </path>
 <!-- ====================" cobertura task define  " Target ================================ -->
 <taskdef classpathref="cobertura.classpath" resource="tasks.properties" />

 <!-- ==================== "clean " Target ================================ -->
 <target name="clean">
  <available property="junit.present" classname="junit.framework.TestCase" />
  <delete dir="${build.dir}" quiet="true" />
  <delete file="report" quiet="true" />
 </target>

 <!-- ==================== "copy xml resource " Target ================================ -->
 <target name="copyxml" depends="clean">
  <copy todir="${build.dir}/testcases">
   <fileset dir="WEB-INF" />
  </copy>
 </target>

 <!-- ==================== "compile  src" Target ================================ -->
 <target name="compile" depends="copyxml">
  <mkdir dir="${build.dir}" />
  <javac srcdir="src" destdir="${build.dir}" debug="yes">
   <classpath>
    <fileset dir="lib" casesensitive="yes">
     <include name="**/*.jar" />
    </fileset>
   </classpath>
   <include name="**/*.java" />
  </javac>
  <javac srcdir="WEB-INF" destdir="${build.dir}">
   <classpath>
    <fileset dir="lib" casesensitive="yes">
     <include name="**/*.jar" />
    </fileset>
   </classpath>
   <include name="*.jsp" />
  </javac>
 </target>

 <!-- ==================== jar" Target ================================ -->
 <target name="jar" depends="compile">
  <mkdir dir="dist/lib" />
  <jar jarfile="dist/lib/${app.name}.jar" basedir="${build.dir}" includes="com/**" />
 </target>

 <!-- ==================== compile test src" Target ================================ -->
 <target name="compiletests" depends="jar">
  <mkdir dir="${build.dir}/testcases" />
  <javac srcdir="test" destdir="${build.dir}/testcases" >
   <classpath>
    <fileset dir="lib" casesensitive="yes">
     <include name="**/*.jar" />
    </fileset>
    <fileset dir="dist/lib" casesensitive="yes">
     <include name="**/*.jar" />
    </fileset>
   </classpath>
   <include name="**/*.java" />
  </javac>
 </target>

 <!-- ==================== instrumented" Target ================================ -->
 <target name="instrumented" depends="compiletests">
  <cobertura-instrument todir="bin/instrumented-classes">
   <ignore regex="org.apache.log4j.*" />
   <fileset dir="bin">
    <include name="com/**/*.class" />
   </fileset>
  </cobertura-instrument>
 </target>

 <!-- ==================== junit-test" Target ================================ -->
 <target name="runtests" depends="instrumented">
  <mkdir dir="report" />
  <property name="tests" value="*Test" />
  <junit printsummary="yes" haltonerror="yes" haltonfailure="yes" fork="yes">

   <formatter type="plain" usefile="false" />
   <formatter type="xml" />
   <batchtest todir="report">
    <fileset dir="test">
     <include name="**/${tests}.java" />
     <exclude name="**/ConfigTest.java" />
    </fileset>
   </batchtest>
   <!--
    Note the classpath order: instrumented classes are before the
    original (uninstrumented) classes.  This is important.
   -->
   <classpath location="bin/instrumented-classes" />
   <!--
    src classpath
   -->
   <classpath location="bin" />

   <!--
    The instrumented classes reference classes used by the
    Cobertura runtime, so Cobertura and its dependencies
    must be on your classpath.
   -->
   <classpath refid="cobertura.classpath" />
   <!--
    test case class path define
   -->
   <classpath>
    <fileset dir="lib" casesensitive="yes">
     <include name="**/*.jar" />
    </fileset>
    <pathelement location="bin/testcases" />
   </classpath>
  </junit>
 </target>

 <!-- ==================== junit-report" Target ================================ -->
 <target name="report" depends="runtests">
  <mkdir dir="report/html" />
  <junitreport todir="report">
   <fileset dir="report">
    <include name="TEST-*.xml" />
   </fileset>
   <report todir="report/html" />
  </junitreport>
 </target>


 <!-- ==================== "coverage-report" Target ================================ -->
 <target name="coverage-report" depends="report">
  <cobertura-report format="html" destdir="cobertura" >
   <fileset dir="src">
    <include name="**/*.java" />
   </fileset>
  </cobertura-report>
  <echo>The execution of coverage-report is complete. Coverage Reports are available in /${coverage-report}</echo>
 </target>
 
 <!-- ==================== "make file to zip" Target ================================ -->
 <target name="make_data_zip" depends="coverage-report">
  <tstamp>
   <format property="date" pattern="yyyy-MM-dd HH-mm" />
  </tstamp>
  <jar jarfile="dist/lib/cobertura${date}.zip" basedir="cobertura" />
  <jar jarfile="dist/lib/report${date}.zip" basedir="report" excludes="*.xml"/>
 </target>


<!-- ==================== "mail" Target ================================ -->
 <target name="mail" depends="make_data_zip">
  <!-- <taskdef name="mail" classname="org.apache.tools.ant.taskdefs.optional.mail.MimeMail"/> -->
  <tstamp/>
  <mail messageMimeType="text/html"
                    messageFile="message.txt"
                    tolist="bpcjy@hotmail.com"
                    mailhost="mailsvr or mail IPAddress"
                    subject="JUnit Test Results: ${TODAY}"
                    from="bpcjy@hotmail.com">
   <fileset dir=".">
    <include name="dist/lib/*.zip"/>
   </fileset>
  </mail>
 </target>

</project>



suplayer 2009-04-09 12:35 鍙戣〃璇勮
]]>
鍦‥clipse涓嬌鐢ˋnt http://www.aygfsteel.com/suplayer/archive/2008/10/16/234580.htmlsuplayersuplayerWed, 15 Oct 2008 18:47:00 GMThttp://www.aygfsteel.com/suplayer/archive/2008/10/16/234580.htmlhttp://www.aygfsteel.com/suplayer/comments/234580.htmlhttp://www.aygfsteel.com/suplayer/archive/2008/10/16/234580.html#Feedback0http://www.aygfsteel.com/suplayer/comments/commentRss/234580.htmlhttp://www.aygfsteel.com/suplayer/services/trackbacks/234580.html闃呰鍏ㄦ枃

suplayer 2008-10-16 02:47 鍙戣〃璇勮
]]>
甯哥敤鐨?ant 鍒涘緩鍜屽彂甯冩弿榪?/title><link>http://www.aygfsteel.com/suplayer/archive/2008/10/16/234578.html</link><dc:creator>suplayer</dc:creator><author>suplayer</author><pubDate>Wed, 15 Oct 2008 18:46:00 GMT</pubDate><guid>http://www.aygfsteel.com/suplayer/archive/2008/10/16/234578.html</guid><wfw:comment>http://www.aygfsteel.com/suplayer/comments/234578.html</wfw:comment><comments>http://www.aygfsteel.com/suplayer/archive/2008/10/16/234578.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/suplayer/comments/commentRss/234578.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/suplayer/services/trackbacks/234578.html</trackback:ping><description><![CDATA[    鍙湁娉ㄥ唽鐢ㄦ埛鐧誨綍鍚庢墠鑳介槄璇昏鏂囥?a href='http://www.aygfsteel.com/suplayer/archive/2008/10/16/234578.html'>闃呰鍏ㄦ枃</a><img src ="http://www.aygfsteel.com/suplayer/aggbug/234578.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/suplayer/" target="_blank">suplayer</a> 2008-10-16 02:46 <a href="http://www.aygfsteel.com/suplayer/archive/2008/10/16/234578.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>鐢╝nt鎺у埗web application宸ョ▼http://www.aygfsteel.com/suplayer/archive/2008/10/16/234579.htmlsuplayersuplayerWed, 15 Oct 2008 18:46:00 GMThttp://www.aygfsteel.com/suplayer/archive/2008/10/16/234579.htmlhttp://www.aygfsteel.com/suplayer/comments/234579.htmlhttp://www.aygfsteel.com/suplayer/archive/2008/10/16/234579.html#Feedback0http://www.aygfsteel.com/suplayer/comments/commentRss/234579.htmlhttp://www.aygfsteel.com/suplayer/services/trackbacks/234579.html闃呰鍏ㄦ枃

suplayer 2008-10-16 02:46 鍙戣〃璇勮
]]>
build.xmlhttp://www.aygfsteel.com/suplayer/archive/2008/10/16/234577.htmlsuplayersuplayerWed, 15 Oct 2008 18:45:00 GMThttp://www.aygfsteel.com/suplayer/archive/2008/10/16/234577.htmlhttp://www.aygfsteel.com/suplayer/comments/234577.htmlhttp://www.aygfsteel.com/suplayer/archive/2008/10/16/234577.html#Feedback0http://www.aygfsteel.com/suplayer/comments/commentRss/234577.htmlhttp://www.aygfsteel.com/suplayer/services/trackbacks/234577.html闃呰鍏ㄦ枃

suplayer 2008-10-16 02:45 鍙戣〃璇勮
]]>
build.xml鏂囦歡鏀惰棌http://www.aygfsteel.com/suplayer/archive/2008/10/16/234575.htmlsuplayersuplayerWed, 15 Oct 2008 18:43:00 GMThttp://www.aygfsteel.com/suplayer/archive/2008/10/16/234575.htmlhttp://www.aygfsteel.com/suplayer/comments/234575.htmlhttp://www.aygfsteel.com/suplayer/archive/2008/10/16/234575.html#Feedback0http://www.aygfsteel.com/suplayer/comments/commentRss/234575.htmlhttp://www.aygfsteel.com/suplayer/services/trackbacks/234575.html闃呰鍏ㄦ枃

suplayer 2008-10-16 02:43 鍙戣〃璇勮
]]>
鐢╝nt鐢熸垚javadochttp://www.aygfsteel.com/suplayer/archive/2008/07/15/214876.htmlsuplayersuplayerTue, 15 Jul 2008 02:02:00 GMThttp://www.aygfsteel.com/suplayer/archive/2008/07/15/214876.htmlhttp://www.aygfsteel.com/suplayer/comments/214876.htmlhttp://www.aygfsteel.com/suplayer/archive/2008/07/15/214876.html#Feedback0http://www.aygfsteel.com/suplayer/comments/commentRss/214876.htmlhttp://www.aygfsteel.com/suplayer/services/trackbacks/214876.html闃呰鍏ㄦ枃

suplayer 2008-07-15 10:02 鍙戣〃璇勮
]]>
ant 欏圭洰浣跨敤錛堜慨鏀歸厤緗紝騫跺姞涓妉ib 鐩存帴浣跨敤錛?/title><link>http://www.aygfsteel.com/suplayer/archive/2008/07/01/211922.html</link><dc:creator>suplayer</dc:creator><author>suplayer</author><pubDate>Tue, 01 Jul 2008 07:36:00 GMT</pubDate><guid>http://www.aygfsteel.com/suplayer/archive/2008/07/01/211922.html</guid><wfw:comment>http://www.aygfsteel.com/suplayer/comments/211922.html</wfw:comment><comments>http://www.aygfsteel.com/suplayer/archive/2008/07/01/211922.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/suplayer/comments/commentRss/211922.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/suplayer/services/trackbacks/211922.html</trackback:ping><description><![CDATA[    鍙湁娉ㄥ唽鐢ㄦ埛鐧誨綍鍚庢墠鑳介槄璇昏鏂囥?a href='http://www.aygfsteel.com/suplayer/archive/2008/07/01/211922.html'>闃呰鍏ㄦ枃</a><img src ="http://www.aygfsteel.com/suplayer/aggbug/211922.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/suplayer/" target="_blank">suplayer</a> 2008-07-01 15:36 <a href="http://www.aygfsteel.com/suplayer/archive/2008/07/01/211922.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> 主站蜘蛛池模板: <a href="http://" target="_blank">逊克县</a>| <a href="http://" target="_blank">原平市</a>| <a href="http://" target="_blank">万源市</a>| <a href="http://" target="_blank">天镇县</a>| <a href="http://" target="_blank">英超</a>| <a href="http://" target="_blank">栖霞市</a>| <a href="http://" target="_blank">凤冈县</a>| <a href="http://" target="_blank">两当县</a>| <a href="http://" target="_blank">安达市</a>| <a href="http://" target="_blank">天长市</a>| <a href="http://" target="_blank">田阳县</a>| <a href="http://" target="_blank">略阳县</a>| <a href="http://" target="_blank">皋兰县</a>| <a href="http://" target="_blank">奉节县</a>| <a href="http://" target="_blank">南投市</a>| <a href="http://" target="_blank">淳化县</a>| <a href="http://" target="_blank">达日县</a>| <a href="http://" target="_blank">九寨沟县</a>| <a href="http://" target="_blank">自贡市</a>| <a href="http://" target="_blank">南漳县</a>| <a href="http://" target="_blank">全椒县</a>| <a href="http://" target="_blank">彰化市</a>| <a href="http://" target="_blank">北辰区</a>| <a href="http://" target="_blank">苍梧县</a>| <a href="http://" target="_blank">和林格尔县</a>| <a href="http://" target="_blank">新沂市</a>| <a href="http://" target="_blank">城固县</a>| <a href="http://" target="_blank">苍山县</a>| <a href="http://" target="_blank">和平区</a>| <a href="http://" target="_blank">增城市</a>| <a href="http://" target="_blank">广宗县</a>| <a href="http://" target="_blank">凤阳县</a>| <a href="http://" target="_blank">保山市</a>| <a href="http://" target="_blank">翼城县</a>| <a href="http://" target="_blank">上高县</a>| <a href="http://" target="_blank">怀集县</a>| <a href="http://" target="_blank">宝鸡市</a>| <a href="http://" target="_blank">阜城县</a>| <a href="http://" target="_blank">南乐县</a>| <a href="http://" target="_blank">景德镇市</a>| <a href="http://" target="_blank">安塞县</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>