mock

  1. when(…) thenReturn(…)会调用真实的方法,如果你不想调用真实的方法而是想要mock的话,就不要使用这个方法
  1. doReturn(…) when(…) 跟when(…) thenReturn(…)一样都是mock方法,但不会调用真实方法