码迷,mamicode.com
首页 > 编程语言 > 详细

接口测试(java+testng+ant+jenkins)第三篇ant

时间:2017-09-10 15:52:12      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:class   sys   end   lin   debug   dir   resource   代码   depends   

1、ant是什么?

  是一个将软件编译、测试、部署等步骤联系在一起加以自动化的一个工具

2、下载安装

  http://www.cnblogs.com/yuzhongwusan/archive/2013/03/26/2982411.html

3、在eclipce中的使用

准备工作:

  项目右键——new——folder——folder name: lib

  将testng-6.8.5.jar 、jcommander.jar 放入lib

  项目右键——new——file——build.xml  (文件名不能写错)

  放入代码

<?xml version="1.0"  encoding="UTF-8" ?>
<project name="HelloWorld" default="regression" basedir=".">
<property name="src" value="src"/>
<property name="dest" value="classes"/>
<property name="testng.dir"  value="${basedir}\lib"/>
<property name="testng.output.dir" value="${basedir}\test-output"/>


 <path id="class1">
        <fileset dir="${basedir}\lib" includes="*jar"/>
        <pathelement location="${dest}"/>
        <pathelement location="${src}"/>
 </path>

<taskdef resource="testngtasks" classpath="${testng.dir}/testng-6.8.5.jar"/>

<target name="init">
    <delete dir="${dest}"/>
    <mkdir dir="${dest}"/>
</target>
<target name="compile" depends="init">
   <javac srcdir="${src}" destdir="${dest}"  classpathref="class1" encoding="UTF8" includeantruntime="off" debug="on" debuglevel="lines,vars,source"/>
</target>

<target name="regression" depends="compile">
        <echo>running testng</echo>
        <testng outputdir="${testng.output.dir}" classpathref="class1" delegateCommandSystemProperties="true">
            <xmlfileset dir="${basedir}" includes="testng.xml"/>
        </testng>
</target>
</project>

4、运行build.xml

  可以右键Run As——Ant build

  也可以用cmd进入build.xml所在目录,使用ant命令

技术分享

 

接口测试(java+testng+ant+jenkins)第三篇ant

标签:class   sys   end   lin   debug   dir   resource   代码   depends   

原文地址:http://www.cnblogs.com/smlxs/p/7501065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!