我有一个要求,我需要从webservice获得一些响应。需要模拟函数getPdf。我无法模仿GetDocumentRequest
和GetDocumentResponse
。
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 ();
}
}
答案 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");
}