|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DeprecatedOngoingStubbing<T>
Stubs a method call with return value or an exception. E.g:
stub(mock.someMethod()).toReturn(10); //you can use flexible argument matchers, e.g: stub(mock.someMethod(anyString())).toReturn(10); //setting exception to be thrown: stub(mock.someMethod("some arg")).toThrow(new RuntimeException()); //you can stub with different behavior for consecutive method calls. //Last stubbing (e.g: toReturn("foo")) determines the behavior for further consecutive calls. stub(mock.someMethod("some arg")) .toThrow(new RuntimeException()) .toReturn("foo");See examples in javadoc for
Mockito.stub(T)
Method Summary | |
---|---|
DeprecatedOngoingStubbing<T> |
toAnswer(Answer<?> answer)
Set a generic Answer for the stubbed method. |
DeprecatedOngoingStubbing<T> |
toReturn(T value)
Set a return value for the stubbed method. |
DeprecatedOngoingStubbing<T> |
toThrow(java.lang.Throwable throwable)
Set a Throwable to be thrown when the stubbed method is called. |
Method Detail |
---|
DeprecatedOngoingStubbing<T> toReturn(T value)
stub(mock.someMethod()).toReturn(10);See examples in javadoc for
Mockito.stub(T)
value
- return value
DeprecatedOngoingStubbing<T> toThrow(java.lang.Throwable throwable)
stub(mock.someMethod()).toThrow(new RuntimeException());If throwable is a checked exception then it has to match one of the checked exceptions of method signature. See examples in javadoc for
Mockito.stub(T)
throwable
- to be thrown on method invocation
DeprecatedOngoingStubbing<T> toAnswer(Answer<?> answer)
stub(mock.someMethod(10)).toAnswer(new Answer<Integer>() { public Integer answer(InvocationOnMock invocation) throws Throwable { return (Integer) invocation.getArguments()[0]; } }
answer
- the custom answer to execute.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |