使用mockito在函数中存在具有setter getter方法的类对象

时间:2016-04-21 12:10:29

标签: java spring mockito powermockito

我有一个要求,我需要从webservice获得一些响应。需要模拟函数getPdf。我无法模仿GetDocumentRequestGetDocumentResponse。 Mockito或PowerMockito我需要用来嘲笑。 例如:

Class xyz {
    // mocking required.
    String getPdf (int I, String h){
        return  getDoc(I, h):
     }

    String getDoc (int I, String h){
        GetDocumentRequest d = factory.getDocument ():
        d.setversion (I);
        d.setname (h):
        GetDocumentResponse r  = getService ().getPdfDoc (d):
        // webservice
        return r.getPdfString ();
   }


}

1 个答案:

答案 0 :(得分:1)

Mockito足以模仿普通方法。 也许类似的东西?

@Test
public void test() {
   Xyz xyz = mock(Xyz.class);
   when(xyz.getPdf(any(Integer.class), any(String.class)).thenReturn("this is my pdf");
}