参数化测试的编写稍微有点麻烦(当然这是相对于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 45 46 47 48
| package hypc;
import org.junit.Assert; import java.util.Arrays; import java.util.Collection;
import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class) public class ParameterizeTest {
private String expected; private String target;
@Parameters public static Collection words() { return Arrays.asList(new Object[][] { { "employee_info", "employeeInfo" }, { null, null }, { "", "" }, { "employee_info", "EmployeeInfo" }, { "employee_info_a", "employeeInfoA" }, { "employee_a_info", "employeeAInfo" } }); }
public ParameterizeTest(String expected, String target) { this.expected = expected; this.target = target; }
@Test public void wordFormat() { Assert.assertEquals(expected, WordDealUtil.wordFormat(target)); } }
|
注意:运行时是运行类,即ParameterizeTest
,而不是方法wordFormat
。