Junit 4
近期写单元测试计划,公司准备把junit3.8升级到junit4以上的版本,所以研究了一下,写下学习过程和心得体会,为了巩固学习成果,所以把学习心得写下来加深印象,也供需要的朋友查阅,少走弯路。
好了,废话不多说,直接开始:
假设我们要写一个整数除法和乘法的类,并且给他写测试用例:
1)建立Math类
工具是eclipse3.3
/** * @author bulargy.j.bai * @mail [email protected] * @创建时间:Mar 10, 2008 * @描述:一个整数除法和乘法的工具类 */ public class Math { public static int divide(int x,int y) { return x/y; } public static int multiple(int x,int y) { return x*y; } }
2)建立测试用例
选中需要建立测试用例的包,选择new->other->JUnitTestCase。
有5个方法可以选择:
setUp()方法在测试方法前调用,一般用来做测试准备工作。
tearDown()方法在测试方法后调用,一般作测试的清理工作。
setUpBeforeClass()方法在整个类初始化之后调用,一般用来做测试准备工作。
tearDownAfterClass()方法在整个类结束之前调用,一般作测试的清理工作。
constructor()为是否包含构造方法。
自动生成的代码如下:
/** * @author bulargy.j.bai * @mail [email protected] * @创建时间:Mar 11, 2008 * @描述: */ public class MathTest { @BeforeClass public static void setUpBeforeClass() throws Exception { } @AfterClass public static void tearDownAfterClass() throws Exception { } @Test public void testDivide() { fail("Not yet implemented"); } @Test public void testMultiple() { fail("Not yet implemented"); } }
说明:
@BeforeClass标签注释的方法用于在整个类测试过程的初始化后调用一次,@AfterClass标签注释的方法则是整个测试类结束之前调用一次。这2个标签的搭配可以避免使用@Before、@After标签组合在每个测试方法前后都调用的弊端,减少系统开销,提高系统测试速度。(不过对环境独立性要求较高的测试还是应当使用@Before、@After来完成)
@Test标签用来标注待测试的方法,按照类中声明的顺序执行。
我们在testDivide方法加入测试代码,分别测试三种情况:
a.完全正确也没有可能出错的数据,如:9除3结果必须等于3
b.可能有问题的边缘数据,如:10除3结果也必须等于3
c.错误的数据,如:10除0必须抛出异常
忽略testMultiple方法
代码如下:
@Test(expected=ArithmeticException.class) public void testDivide() { assertEquals(3,Math.divide(9,3)); assertEquals(3,Math.divide(10,3)); Math.divide(10,0); //除数不能为0,会抛出异常 } @Ignore("忽略乘法测试") @Test public void testMultiple() { }
说明:
Junit4为测试方法增加了判断异常的方式,避免了以前还要通过try/catch块捕捉异常再抛出的复杂方式,简单的这样声明“@Test(expected=ArithmeticException.class)”Junit4就会检查此方法是否抛出ArithmeticException异常,如果抛出则测试通过,没抛出则测试不通过(@Test标签还有一些其他参数,例如超时测试@Test(timeout=1)这样,但是由于并不能准确反应实际时间,所以应用较少,经过我测试误差太大绝对不适合拿来做超时测试的)
@Ignore标签会告诉Junit4忽略它所标注的方法,例如数据库不可用时可以用此标注标注一些测试数据库连接的方法来避免测试失败。
3)运行测试
系统会打开JUnit透视图,如果测试全部通过,则显示颜色条为绿色;我们将assertEquals(3,Math.divide(9,3));改成assertEquals(2,Math.divide(9,3));则显示颜色条为红色,我们可以对错误或者故障的地方进行追踪。
4)创建测试套件
测试套件可以将多个测试用例合在一起测试,将相关的测试用例合成一个测试套件,在做一个修改后,只需要运行测试套件就可以,不需要运行每一个测试用例。
Junit4没有采用以前的套件测试方法,同样使用annotation的方式来进行。简单在你所要构建测试套件的包里创建一个文件,一般以包名+4Suite
下面我在上面的测试包中复制一下之前的测试类并且一个改名字叫做MathTestAnother,新建一个class类叫做Uitl4Suite,代码如下:
import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; /** * @author bulargy.j.bai * @mail [email protected] * @创建时间:Mar 11, 2008 * @描述:util包的测试套件 */ @RunWith(Suite.class) @SuiteClasses({MathTest.class, MathTestAnother.class}) public class Util4Suite { }
说明:
通过@RunWith和@SuiteClasses标签来注释一个空的包含无参数构造函数的类来作为套件类,将需要组成套件运行的类加到@SuiteClasses的属性中即可。
可以看到运行套件类的结果是2个测试类都进行了测试。
5)参数测试
修改testMultiple
//@Ignore("忽略乘法测试") @Test public void testMultiple() { assertEquals(result,Math.multiple(faciend,multiplicator)); }
编写参数方法:
@Parameters public static Collection multipleValues() { return Arrays.asList(new Object[][] { {3, 2, 6 }, {4, 3, 12 }, {21, 5, 105 }, {11, 22, 242 }, {8, 9, 72 }}); }
说明:
需要使用@Parameters标签注解一个静态的返回集合对象的方法
增加成员变量和构造函数:
int faciend; int multiplicator; int result; public MathTest(int faciend, int multiplicator, int result) { this.faciend = faciend; this.multiplicator = multiplicator; this.result = result; }
最后在给测试类增加如下注释:
@RunWith(Parameterized.class)
完整的循环测试代码如下:
import static org.junit.Assert.*; import java.util.Arrays; import java.util.Collection; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; /** * @author bulargy.j.bai * @mail [email protected] * @创建时间:Mar 11, 2008 * @描述: */ @RunWith(Parameterized.class) public class MathTest { int faciend; int multiplicator; int result; public MathTest(int faciend, int multiplicator, int result) { this.faciend = faciend; this.multiplicator = multiplicator; this.result = result; } @BeforeClass public static void setUpBeforeClass() throws Exception { } @AfterClass public static void tearDownAfterClass() throws Exception { } @Test(expected=ArithmeticException.class) public void testDivide() { assertEquals(3,Math.divide(9,3)); assertEquals(3,Math.divide(10,3)); Math.divide(10,0);//除数不能为0,会抛出异常 } //@Ignore("忽略乘法测试") @Test public void testMultiple() { assertEquals(result,Math.multiple(faciend,multiplicator)); } @Parameters public static Collection multipleValues() { return Arrays.asList(new Object[][] { {3, 2, 6 }, {4, 3, 12 }, {21, 5, 105 }, {11, 22, 242 }, {8, 9, 72 }}); } }
OK,大功告成。测试看看吧,测试类跑了5次~~。
大概就这么多体会了,总得来说JUnit4以后测试还是很方便的,顺便这个是仅仅是为了做例子,实际使用中由于JUnit4不再受命名的限制,所以应该划分更细粒度的测试来完成,一个方法的正确,异常,错误及边界数据完全可以分开来写测试方法。由于大部分情况资源只用加载和释放一次就足够,大大提高的测试的速度,再也不会有以前那样点开测试然后去泡咖啡的情况出现了~~呵呵~~