回顾上一篇文章中的实例。为保证单元测试的严谨性,我们模拟了不同的情况来测试方法,为此写了大量的单元测试方法。但是这些方法都差不多只是参数和期望值不同,现在使用Junit的参数化测试能很好的应对这个问题
参数化测试的编写稍微有点麻烦
-
为准备使用参数化测试的测试类指定特殊的运行器org.junit.runners.Parameterized。
-
为测试类声明几个变量,分别用于存放期望值和测试所用数据。
-
为测试类提供参数的方法声明一个使用注解org.junit.runners.Parameterized.Parameters 修饰的,返回值为java.util.Collection 的公共静态方法,并在此方法中初始化所有需要测试的参数对。
-
为测试类声明一个带有参数的公共构造函数,并在其中为第二个环节中声明的几个变量赋值。
-
编写测试方法,使用定义的变量作为参数进行测试。
改编后的测试用例如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 1package com.tiamaes.junit;
2
3import static org.junit.Assert.assertEquals;
4
5import java.util.Arrays;
6import java.util.Collection;
7
8import org.junit.Test;
9import org.junit.runner.RunWith;
10import org.junit.runners.Parameterized;
11import org.junit.runners.Parameterized.Parameters;
12
13@RunWith(Parameterized.class)
14public class TestWordDealUtilWithParam {
15
16 private String expected;
17 private String target;
18
19 @SuppressWarnings("rawtypes")
20 @Parameters
21 public static Collection words(){
22 return Arrays.asList(new Object[][]{
23 {"EMPLOYEE_INFO","employeeInfo"}, //正常情况
24 {null,null}, //参数为null
25 {"",""}, //空字符串
26 {"EMPLOYEE_INFO","EmployeeInfo"}, //首字母大写
27 {"EMPLOYEE_INFO_A","EmployeeInfoA"},//尾字母大写
28 {"EMPLOYEE_A_INFO","EmployeeAInfo"} //多个大写字母相连
29 });
30 }
31
32 public TestWordDealUtilWithParam(String expected,String target){
33 this.expected = expected;
34 this.target = target;
35 }
36
37 @Test
38 public void testWordFomat4DB() {
39 assertEquals(this.expected, WordDealUtil.wordFomat4DB(this.target));
40 }
41
42}
43
44
1
2 1 这个上一篇文章中的测试用例的效果是一样的。
2