我正在尝试在下面的类中为 params 方法编写一个测试用例。
编写 JUnit 测试用例时遇到的问题:
问题是该方法是私有的,并且在它调用超类方法的方法内部。我尝试使用 EasyMock 来抑制对超类构造函数的调用
CustomListener customListenerMock=createMock(CustomListener.class);
expect(customListenerMock.getParam("CHECK_INTEGRITY")).andReturn(null);
expect(customListenerMock.getParam("WRITE_ANSWER")).andReturn(null);
该文档说,当它们被调用时,我将能够抑制这些方法,并且在这种情况下可以给出指定的输出,即 null。
现在我的问题是如何调用私有方法进行测试?我尝试使用反射 API,但它没有按预期工作。
代码:
Method InitialiseSecurityConfiguration = Listener .class.getDeclaredMethod(methodToTest, null);
InitialiseSecurityConfiguration.setAccessible(true);
InitialiseSecurityConfiguration.invoke(fileListenerObj);
当我使用反射 API 调用时,这些方法就像那样被调用,并且超级类方法不会按需要被抑制。
注意:我使用的是旧版应用程序,并且不允许更改我的方法的可见性。
class Listener extends CustomListener{
/*
Some More methods
*/
private boolean params()
{
String integrity = "";
String sWAnswer = "";
try
{
try
{
integrity = super.getParam("CHECK_INTEGRITY");
sWAnswer = super.getParam("WRITE_ANSWER");
**Some Business Logic**
super.info("Request Directory : " + sRequestPath);
super.info("Response Directory : " + sResponsePath);
super.info("Error Directory : " + sErrorPath);
}
}
catch (Exception ex)
{
bCheck = false;
}
return bCheck;
}//closing the method params
}//Closing Listener class