Private方法测试
private方法无法直接测试, 需要通过反射将方法修改为可访问之后再进行测试。
举个栗子:
public class DemoClass {
private int add(int a, int b) {
return a + b;
}
}
测试类:
public class PrivateMethodTest {
@Test
public void testAdd() throws
private方法无法直接测试, 需要通过反射将方法修改为可访问之后再进行测试。
举个栗子:
public class DemoClass {
private int add(int a, int b) {
return a + b;
}
}
测试类:
public class PrivateMethodTest {
@Test
public void testAdd() throws