✨
private,protectedメソッドのテスト方法
概要
privateメソッドやprotectedメソッドはテストクラスで生成したインスタンスからは呼び出すことができない。
リフレクションと呼ばれる方法を使って呼び出します。
処理の流れ
- Method型の変数にprivate,protectedメソッドを宣言する
- Method変数のアクセス制限を変更
- メソッド実行
ソースコード
SampleClass1.java
public class SampleClass1 {
protected boolean callProtec(String str) {
if(str != null) {
System.out.println("protectedメソッドを呼び出し:" + str);
return true;
} else {
return false;
}
}
private boolean callPri(String str) {
if(str != null) {
System.out.println("privateメソッドを呼び出し:" + str);
return true;
} else {
return false;
}
}
}
SampleClass1Test.java
@SpringJUnitConfig
@SpringBootTest
@TestExecutionListeners({ DependencyInjectionTestExecutionListener.class })
public class SampleClass1Test {
@Test
public void callProtecTest() {
SampleClass1 sampleClass1 = new SampleClass1();
Method method;
try {
method = SampleClass1.class.getDeclaredMethod("callProtec", String.class);
method.setAccessible(true);
boolean flg = (boolean)method.invoke(sampleClass1, "testStr!");
assertEquals(flg,true);
} catch (NoSuchMethodException e) {
// TODO 自動生成された catch ブロック
e.printStackTrace();
} catch (SecurityException e) {
// TODO 自動生成された catch ブロック
e.printStackTrace();
} catch(InvocationTargetException e) {
} catch(IllegalAccessException e) {
}
}
@Test
public void callPriTest() {
SampleClass1 sampleClass1 = new SampleClass1();
Method method;
try {
method = SampleClass1.class.getDeclaredMethod("callPri", String.class);
method.setAccessible(true);
boolean flg = (boolean)method.invoke(sampleClass1, "testStr2!");
assertEquals(flg,true);
} catch (NoSuchMethodException e) {
// TODO 自動生成された catch ブロック
e.printStackTrace();
} catch (SecurityException e) {
// TODO 自動生成された catch ブロック
e.printStackTrace();
} catch(InvocationTargetException e) {
} catch(IllegalAccessException e) {
}
}
}
git
Discussion