0

我正在尝试在下面的类中为 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     
4

1 回答 1

3

我会为调用您感兴趣的私有方法的公共方法编写测试。

作为一般规则,针对类的公共 API 编写单元测试是一种很好的做法,这样就可以更改实现(即私有方法)而无需更改测试。

公共 API 是该类的使用方式,因此应该进行测试。

于 2015-06-16T10:31:26.183 回答