Uses of Interface
org.mockito.stubbing.Stubber
-
Packages that use Stubber Package Description org.mockito Mockito is a mock library for java - seeMockitoclass for usage.org.mockito.stubbing Stubbing related classes. -
-
Uses of Stubber in org.mockito
Methods in org.mockito that return Stubber Modifier and Type Method Description static StubberMockito. doAnswer(Answer answer)UsedoAnswer()when you want to stub a void method with genericAnswer.static StubberMockito. doCallRealMethod()UsedoCallRealMethod()when you want to call the real implementation of a method.static StubberMockito. doNothing()UsedoNothing()for setting void methods to do nothing.static StubberMockito. doReturn(Object toBeReturned)UsedoReturn()in those rare occasions when you cannot useMockito.when(Object).static StubberMockito. doReturn(Object toBeReturned, Object... toBeReturnedNext)Same asMockito.doReturn(Object)but sets consecutive values to be returned.static StubberMockito. doThrow(Class<? extends Throwable> toBeThrown)UsedoThrow()when you want to stub the void method with an exception.static StubberMockito. doThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... toBeThrownNext)Same asMockito.doThrow(Class)but sets consecutive exception classes to be thrown.static StubberMockito. doThrow(Throwable... toBeThrown)UsedoThrow()when you want to stub the void method with an exception. -
Uses of Stubber in org.mockito.stubbing
Methods in org.mockito.stubbing that return Stubber Modifier and Type Method Description StubberBaseStubber. doAnswer(Answer answer)Use it for stubbing consecutive calls inMockito.doAnswer(Answer)style:StubberBaseStubber. doCallRealMethod()Use it for stubbing consecutive calls inMockito.doCallRealMethod()style.StubberBaseStubber. doNothing()Use it for stubbing consecutive calls inMockito.doNothing()style:StubberBaseStubber. doReturn(Object toBeReturned)Use it for stubbing consecutive calls inMockito.doReturn(Object)style.StubberBaseStubber. doReturn(Object toBeReturned, Object... nextToBeReturned)Use it for stubbing consecutive calls inMockito.doReturn(Object)style.StubberBaseStubber. doThrow(Class<? extends Throwable> toBeThrown)Use it for stubbing consecutive calls inMockito.doThrow(Class)style:StubberBaseStubber. doThrow(Class<? extends Throwable> toBeThrown, Class<? extends Throwable>... nextToBeThrown)Use it for stubbing consecutive calls inMockito.doThrow(Class)style:StubberBaseStubber. doThrow(Throwable... toBeThrown)Use it for stubbing consecutive calls inMockito.doThrow(Throwable[])style:
-