测试类实现调用私有方法
1、普通实体类中的私有方法
public class MyClass{ private String privateMethod(String a1, int a2){ return null; } }
2、在测试类中调用(或其他类中调用),在测试类的测试方法里最好加个try{}catch()
public class MyTest{ @Test private void test(){
try{ MyClass myClass = new MyClass(); Method privateMethod = MyClass.class.getDeclaredMethod("privateMethod", String.class, int.class); //将私有方法设置为可访问 privateMethod.setAcessible(true); //调用私有方法 privateMethod.invoke(myClass, "String", 1); } catch(Exception e){
e.printStackTrace();
} } }