ant整合junit自己主动化測试
一. 使用Junit进行測试
1. Java业务代码:
public class HelloWorld {
// 測试返回"world"
public String hello() {
return "world";
} // 測试返回"hello"
public String world() {
return "hello";
} // 測试为空
public String nil() {
return null;
} // 測试不为空
public String notNil() {
return "abc";
} // 測试抛出异常
public String ext() {
return null;
}
}
2. 使用junit3測试, 继承TestCase
import junit.framework.TestCase;
public class HelloWorldTest extends TestCase {
private HelloWorld helloWorld; @Override
protected void setUp() throws Exception {
helloWorld = new HelloWorld();
System.out.println("helloWorld init");
} public void testHello() {
String str = helloWorld.hello();
assertEquals("測试world失败", str, "world");
} public void testWorld() {
String str = helloWorld.world();
assertEquals("測试world失败", str, "hello");
} public void testNotNil() {
assertNotNull("对象为空", helloWorld.notNil());
} public void testNil() {
assertNull("对象不为空", helloWorld.nil());
} public void testExt() {
try {
helloWorld.ext();
fail("没有抛出异常");
} catch (NumberFormatException e) {
}
} @Override
protected void tearDown() throws Exception {
System.out.println("hello world destory");
helloWorld = null;
}
}
3. 使用junit4測试, 使用注解
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*; // 静态引入, assertEquals兼容junit3
public class HelloWorldTest {
private HelloWorld helloWorld; @Before
public void setUp() {
helloWorld = new HelloWorld();
} @Test
public void testHello() {
String str = helloWorld.hello();
assertEquals("hello測试失败",str,"world");
} @Test
public void testWorld() {
String str = helloWorld.world();
assertEquals("world測试失败",str, "hello");
} @Test
public void testNil() {
assertNull("对象不为空",helloWorld.nil());
} @Test
public void testNotNil() {
assertNotNull("对象为空", helloWorld.notNil());
} @Test(expected=NumberFormatException.class)
public void testExt() {
helloWorld.ext();
} @After
public void tearDown() {
helloWorld = null;
}
}
二. ant整合junit測试
1. 生成測试报告:
<?xml version="1.0" encoding="UTF-8"? >
<project name="junit-test">
<property name="src" location="src" />
<property name="test" location="test" />
<property name="lib" location="lib" />
<property name="build" location="build" />
<property name="build.classes" location="${build}/classes" />
<property name="build.test" location="${build}/test" />
<property name="build.test.classes" location="${build.test}/classes" />
<property name="build.test.report" location="${build.test}/report" />
<!--
<property name="runTest" value="com.zdp.test.HelloWorldTest" />
-->
<property name="runTest" value="**/*Test.class"></property> <!-- 手动指明classpath, 一个path中能够加多个classpath,使用链式编写 -->
<path id="lib_path">
<fileset dir="${lib}" includes="*.jar" />
</path>
<path id="compile_path">
<path refid="lib_path" />
<pathelement location="${build.classes}"/>
</path>
<path id="compile_test_path">
<path refid="compile_path" />
<pathelement location="${build.test.classes}"/>
</path> <target name="clean">
<echo>1.開始清理文件</echo>
<delete dir="${build}"></delete>
</target> <target name="init">
<echo>2.项目的初始化</echo>
<mkdir dir="${build}"/>
<mkdir dir="${build.classes}"/>
<mkdir dir="${build.test}"/>
<mkdir dir="${build.test.classes}"/>
<mkdir dir="${build.test.report}"/>
</target> <target name="compile_src" depends="init">
<echo>3.编译源文件</echo>
<javac srcdir="${src}" destdir="${build.classes}"
classpathref="lib_path" includeantruntime="true"/>
</target> <target name="compile_test" depends="compile_src">
<echo>4.编译測试文件</echo>
<javac srcdir="${test}" destdir="${build.test.classes}"
classpathref="compile_path" includeantruntime="true"/>
</target> <target name="run_test" depends="clean, compile_test">
<echo>5.执行单元測试</echo>
<junit printsummary="false" haltonfailure="false">
<classpath refid="compile_test_path"></classpath>
<formatter type="xml"/>
<batchtest todir="${build.test.report}">
<fileset dir="${build.test.classes}" includes="${runTest}"/>
</batchtest>
</junit>
<junitreport todir="${build.test.report}">
<fileset dir="${build.test.report}" includes="TEST-*.xml"/>
<report format="frames" todir="${build.test.report}/html"/>
</junitreport>
</target>
<target name="end" depends="run_test">
<echo>6.測试结束</echo>
</target>
</project>
2. 生成doc文档并打包
<? xml version="1.0" encoding="UTF-8"? >
<project default="zip">
<property name="src" location="src"></property>
<property name="build" location="build"></property>
<property name="build.classes" location="${build}/classes"></property>
<property name="build.doc" location="${build}/doc/api"></property>
<property name="zip" location="${build}/zip"></property>
<property name="version" value="SNAPSHOT_0.1"></property>
<property name="projectName" value="helloworld_${version}"></property>
<property name="zipFileName" value="helloworld_${version}.zip"></property> <target name="clean">
<echo>1.開始清理文件</echo>
<delete dir="${build}"></delete>
</target> <target name="init">
<echo>2.项目的初始化</echo>
<mkdir dir="${build}"/>
<mkdir dir="${build.classes}"/>
<mkdir dir="${build.doc}"/>
</target> <target name="doc" depends="init">
<echo>3.生成doc文档</echo>
<javadoc sourcepath="${src}" private="true" windowtitle="HelloWorld JAVA DOC"
use="true" packagenames="com.zdp.*" destdir="${build.doc}"
charset="UTF-8" docencoding="UTF-8" encoding="UTF-8">
<classpath path="${build.classes}"></classpath>
</javadoc>
</target> <target name="zip" depends="doc">
<echo>4.生成zip包</echo>
<zip destfile="${zip}/${zipFileName}" duplicate="preserve">
<zipfileset dir="${build.doc}" includes="**/*.*" prefix="${projectName}/doc/api"></zipfileset>
<zipfileset dir="${src}" includes="**/*.*" prefix="${projectName}/src"></zipfileset>
</zip>
</target>
</project>
ant整合junit自己主动化測试的更多相关文章
- Android自己主动化測试解决方式
如今,已经有大量的Android自己主动化測试架构或工具可供我们使用,当中包含:Activity Instrumentation, MonkeyRunner, Robotium, 以及Robolect ...
- 带有机器人框架的.NET自己主动化測试
Clayton Neal在软件測试和质量保证方面有超过13年的经验,当中有八年的Windows, web,和移动应用程序的測试自己主动化经验.他在測试领域的全部等级都工作过.近期他在Bloomberg ...
- 【金阳光測试】大话Android自己主动化測试--Android自己主动化系列(1)--金阳光于2013年4月份
Android自己主动化測试框架和工具在四年多的发展日趋成熟. 从五年前的第一代自己主动化架构演进到眼下第四代(本系列讲座第7篇后将具体剖析第三代和第四代自己主动化框架)从曾经最早谷歌推崇的monke ...
- Android自己主动化測试之Monkeyrunner用法及实例
眼下android SDK里自带的现成的測试工具有monkey 和 monkeyrunner两个.大家别看这俩兄弟名字相像,但事实上是完全然全不同的两个工具,应用在不同的測试领域.总的来说,monke ...
- MAC中在eclipse luna上搭建移动平台自己主动化測试框架(UIAutomator/Appium/Robotium/MonkeyRunner)关键点记录
这几天由于原来在用的hp laptop的电池坏掉了,机器一不小心就断电.所以仅仅能花时间在自己的mackbook pro上又一次搭建整套环境.大家都知道搭建好开发环境是个非常琐碎须要耐心的事情,特别是 ...
- Android Monkey自己主动化測试
前言 假设你做Android开发,还没有使用过Monkey进行測试,那么今天看到这篇文章,希望能解决你Android測试中的一些问题.起码能帮你省点測试的时间而且发现很多其它的问题. Monkey简单 ...
- iOS自己主动化測试的那些干货
前言 假设有測试大佬发现内容不正确.欢迎指正,我会及时改动. 大多数的iOS App(没有持续集成)迭代流程是这种 也就是说.測试是公布之前的最后一道关卡.假设bug不能在測试中发现,那么bug 就会 ...
- Android 自己主动化測试(3)<monkeyrunner> 依据ID查找对象&touch&type (python)
我在之前的两篇文章中用java来实现过 Android 自己主动化測试(1)怎样安装和卸载一个应用(java).Android 自己主动化測试(2)依据ID查找对象(java). 可是本质上都是用mo ...
- 基于QTP的自己主动化測试框架介绍
继前面用了七章介绍了基于QTP的自己主动化測试框架,以下再用几个视频再补充一下. 视频一:基本框架特点介绍说明 .框架的特点从正反两面进行了分析以及主要思想 http://v. ...
随机推荐
- Chrome 最小化恢复之后部分黑屏
解决办法:设置->显示高级设置->关闭硬件加速
- 图的最短路径Dijkstra
#include <stdio.h> #include <string.h> #include <vector> #include <queue> #i ...
- 【HDU1698】 Just a Hook 【线段树入门】
原题:原题链接 题意:(机器翻译的...) 让我们将钩子的连续金属棒从1到N编号.对于每次操作,Pudge可以将连续的金属棒(从X到Y编号)改为铜棒,银棒或金棒. 钩的总值计算为N个金属棒的值的总和. ...
- 5.13会话技术Cookie---Session
.会话技术: 1.会话:一次会话中包含多次请求和相应. 一次会话:浏览器第一次给服务器资源发送请求,会话建立,直到有一方断开为止 2.功能:在一次会话的范围内的多次请求间,共享数据 3.方式: 1.客 ...
- react中withRouter解决props返回为空
利用 react + antd 框架书写导航栏时,遇到了几个坑,分别是一级菜单和二级菜单在点击的情况下,高亮没有任何问题,但是再点击浏览器返回按钮时,却就乱套了. 1. 二级菜单中,我们可以通过 pr ...
- Android HTTP下载文件并保存到本地或SD卡
想把文件保存到SD卡中,一定要知道SD卡的路径,获取SD卡路径: Environment.getExternalStorageDirectory() 另外,在保存之前要判断SD卡是否已经安装好,并且可 ...
- 【PostgreSQL-9.6.3】如何实现非自动提交
我们在使用psql工具操作数据库时,事务是自动提交的.也就是说,当我们执行完一条insert或者delete语句后,在不输入commit情况下,这条语句也是提交的.如果不想自动提交,可以使用以下两种方 ...
- Deutsch lernen (11)
1. anwesend a. 出席的,在场的 ~ abwesend Es waren gegen 50 Leute anwesend. 2. gespannt a. (心情)急切的,急于想知道的:紧张 ...
- Linux文件压缩命令笔记
1.gzip/gunzip gzip/gunzip:主要是进行单个文件的压缩和解压缩的命令. 示例:gzip hello.txt #执行压缩hello.txt ls hello.txt.gz #查看文 ...
- C#第十三节课
冒泡排序 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System. ...