当mock一个对象,且执行此对象中的方法有返回值时,使用下面的方法:
对象= mock (类名.class);
when (对象.方法 (参数)).thenReturn (方法的返回值);
当mock一个对象,且执行此对象中的方法没有返回值时,使用下面的方:
类名 对象 = Mockito.mock(类名.class);
Mockito.doAnswer(new Answer<Object>() {
public Object answer(InvocationOnMock invocation) {
Object[] args = invocation.getArguments();
return "called with arguments: " + args;
}
}).when(对象).方法名();