測(cè)試私有(private)的方法有兩種:
1)把目標(biāo)類的私有方法(修飾符:private)修改為(public),不推薦,因?yàn)樾薷牧嗽闯绦虿患?br />
2)通過(guò)反射 (推薦)
代碼演示:
目標(biāo)程序
PrivateMethod.java
package com.junit3_8;
public class PrivateMethod {
//私有方法
private int add(int a, int b)
{
return a +b ;
}
}
測(cè)試程序
PrivateMethodTest.java
package com.junit3_8;
import java.lang.reflect.Method;
import junit.framework.Assert;
import junit.framework.TestCase;
/**
* 通過(guò)反射測(cè)試私有方法,
*
*/
public class PrivateMethodTest extends TestCase {
public void testAdd() throws Exception
{
//PrivateMethod pm = new PrivateMethod();
//獲取目標(biāo)類的class對(duì)象
Class<PrivateMethod> class1 = PrivateMethod.class;
//獲取目標(biāo)類的實(shí)例
Object instance = class1.newInstance();
//getDeclaredMethod() 可獲取 公共、保護(hù)、默認(rèn)(包)訪問(wèn)和私有方法,但不包括繼承的方法。
//getMethod() 只可獲取公共的方法
Method method = class1.getDeclaredMethod("add", new Class[]{int.class,int.class});
//值為true時(shí) 反射的對(duì)象在使用時(shí) 應(yīng)讓一切已有的訪問(wèn)權(quán)限取消
method.setAccessible(true);
Object result = method.invoke(instance, new Object[]{1,2});
Assert.assertEquals(3, result);
}
}
小結(jié):
getDeclaredMethod() 可獲取 公共、保護(hù)、默認(rèn)(包)訪問(wèn)和私有方法,但不包括繼承的方法。 getMethod() 只可獲取公共的方法
Method method = class1.getDeclaredMethod("add", new Class[]{int.class,int.class});
等價(jià)于
Method method = class1.getDeclaredMethod("add", new Class[]{Integer.TYPE,int.Integer.TYPE});