RobertZagorski
Results
1
issues of
RobertZagorski
Mockito provides 2 constructions for stubbing: `doReturn(...).when(...)` `when(...).thenReturn(...)` The first one is known not to call real method, which is sometimes handy ([source](https://stackoverflow.com/a/29394497/6507689)) There are nice extensions for the second...