Allows to choose a method when stubbing in doThrow()|doAnswer()|doNothing()|doReturn() style Example: doThrow(new RuntimeException()) .when(mockedList).clear(); //following throws RuntimeException: mockedList.clear(); Read more about
(T mock)
| 74 | * @return select method for stubbing |
| 75 | */ |
| 76 | <T> T when(T mock); |
| 77 | } |
no outgoing calls