欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

junit使用--参数化测试

程序员文章站 2022-04-29 19:02:40
...

在一个单元测试中,需要对一个功能模块传入若干组参数以验证其功能时,可创建若干个测试函数,分别传入参数,也可以利用参数化测试来进行集中测试。

参数化测试步骤:

(1)为准备使用参数化测试的测试类指定特殊的运行器 org.junit.runners.Parameterized。 

(2)为测试类声明几个变量,分别用于存放期望值和测试所用数据。 

(3)为测试类声明一个使用注解 org.junit.runners.Parameterized.Parameters 修饰的,返回值为 java.util.Collection 的公共静态方法,并在此方法中初始化所有需要测试的参数对。 

(4)为测试类声明一个带有参数的公共构造函数,并在其中为第二个环节中声明的几个变量赋值。 

(5)编写测试方法,使用定义的变量作为参数进行测试。

 

代码:

 

package com.woo.demo.junit.test;

import java.util.Arrays;
import java.util.Collection;

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;

import com.woo.demo.junit.service.Service1;

@RunWith(Parameterized.class)
public class ParameriedTest {
	
	private int param1;
	private int param2;
	private int target;
	
	//参数准备函数
	@Parameters
	public static Collection prepareParams(){
		return Arrays.asList(new Object[][]{
				{1,1,2},{2,2,4},{4,5,8}
		});
	}
	
	//类构造函数
	public ParameriedTest(int param1,int param2,int target){
		this.param1=param1;
		this.param2=param2;
		this.target=target;
	}

	@Test
	public void testParametersMethod(){
		Service1 service=new Service1();
		Assert.assertEquals(target, service.add(param1, param2));
		
	}
	
}
 
package com.woo.demo.junit.service;

public class Service1 {
	
	public int add(int param1,int param2){
		return param1+param2;
	}
	
}
 
相关标签: junit 单元测试