PowerMock 测试私有方法

x33g5p2x  于2021-12-28 转载在 其他  
字(0.7k)|赞(0)|评价(0)|浏览(403)

– Start
假设我们有如下类。

package demo03;

public class BusinessService {

	private int max(int a, int b) {
		return a > b ? a : b;
	}

}

下面我们看看如何测试私有方法。

package demo03;

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
import org.powermock.reflect.Whitebox;

@RunWith(PowerMockRunner.class)
@PrepareForTest({ BusinessService.class })
public class BusinessServiceTest {

	@Test
	public void test() throws Exception {
		BusinessService businessService = new BusinessService();

		// 调用私有方法
		int max = Whitebox.invokeMethod(businessService, "max", 1, 2);

		// 验证
		Assert.assertTrue(2 == max);
	}

}

– 更多参见:PowerMock 精萃
– 声 明:转载请注明出处
– Last Updated on 2019-08-17
– Written by ShangBo on 2019-08-17
– End

相关文章