public interface OngoingStubbing<T> extends IOngoingStubbing
when(mock.someMethod()).thenReturn(10); //you can use flexible argument matchers, e.g: when(mock.someMethod(anyString())).thenReturn(10); //setting exception to be thrown: when(mock.someMethod("some arg")).thenThrow(new RuntimeException()); //you can set different behavior for consecutive method calls. //Last stubbing (e.g: thenReturn("foo")) determines the behavior of further consecutive calls. when(mock.someMethod("some arg")) .thenThrow(new RuntimeException()) .thenReturn("foo"); //There is a shorter way of consecutive stubbing: when(mock.someMethod()).thenReturn(1,2,3); when(mock.otherMethod()).thenThrow(exc1, exc2);See examples in javadoc for
Mockito.when(T)
Modifier and Type | Method and Description |
---|---|
OngoingStubbing<T> |
thenAnswer(Answer<?> answer)
Sets a generic Answer for the method.
|
OngoingStubbing<T> |
thenCallRealMethod()
Sets the real implementation to be called when the method is called on a mock object.
|
OngoingStubbing<T> |
thenReturn(T value)
Sets a return value to be returned when the method is called.
|
OngoingStubbing<T> |
thenReturn(T value,
T... values)
Sets consecutive return values to be returned when the method is called.
|
OngoingStubbing<T> |
thenThrow(Throwable... throwables)
Sets Throwable objects to be thrown when the method is called.
|
OngoingStubbing<T> thenReturn(T value)
when(mock.someMethod()).thenReturn(10);See examples in javadoc for
Mockito.when(T)
value
- return valueOngoingStubbing<T> thenReturn(T value, T... values)
when(mock.someMethod()).thenReturn(1, 2, 3);Last return value in the sequence (in example: 3) determines the behavior of further consecutive calls.
See examples in javadoc for Mockito.when(T)
value
- first return valuevalues
- next return valuesOngoingStubbing<T> thenThrow(Throwable... throwables)
when(mock.someMethod()).thenThrow(new RuntimeException());If throwables contain a checked exception then it has to match one of the checked exceptions of method signature.
You can specify throwables to be thrown for consecutive calls. In that case the last throwable determines the behavior of further consecutive calls.
if throwable is null then exception will be thrown.
See examples in javadoc for Mockito.when(T)
throwables
- to be thrown on method invocationOngoingStubbing<T> thenCallRealMethod()
As usual you are going to read the partial mock warning: Object oriented programming is more less tackling complexity by dividing the complexity into separate, specific, SRPy objects. How does partial mock fit into this paradigm? Well, it just doesn't... Partial mock usually means that the complexity has been moved to a different method on the same object. In most cases, this is not the way you want to design your application.
However, there are rare cases when partial mocks come handy: dealing with code you cannot change easily (3rd party interfaces, interim refactoring of legacy code etc.) However, I wouldn't use partial mocks for new, test-driven & well-designed code.
// someMethod() must be safe (e.g. doesn't throw, doesn't have dependencies to the object state, etc.) // if it isn't safe then you will have trouble stubbing it using this api. Use Mockito.doCallRealMethod() instead. when(mock.someMethod()).thenCallRealMethod(); // calls real method: mock.someMethod();See also javadoc
Mockito.spy(Object)
to find out more about partial mocks.
Mockito.spy() is a recommended way of creating partial mocks.
The reason is it guarantees real methods are called against correctly constructed object because you're responsible for constructing the object passed to spy() method.
See examples in javadoc for Mockito.when(T)
OngoingStubbing<T> thenAnswer(Answer<?> answer)
when(mock.someMethod(10)).thenAnswer(new Answer<Integer>() { public Integer answer(InvocationOnMock invocation) throws Throwable { return (Integer) invocation.getArguments()[0]; } }
answer
- the custom answer to execute.Copyright © 2018. All rights reserved.