Package org.mockito.listeners
Interface MethodInvocationReport
- All Known Implementing Classes:
NotifiedMethodInvocationReport
public interface MethodInvocationReport
Represent a method call on a mock.
Contains the information on the mock, the location of the stub the return value if it returned something (maybe null), or an exception if one was thrown when the method was invoked.
-
Method Summary
Modifier and TypeMethodDescriptionThe return type is deprecated, please assign the return value from this method to theDescribedInvocation
type.boolean
-
Method Details
-
getInvocation
DescribedInvocation getInvocation()The return type is deprecated, please assign the return value from this method to theDescribedInvocation
type. Sorry for inconvenience but we had to movePrintableInvocation
to better place to keep the API consistency.- Returns:
- Information on the method call, never
null
-
getReturnedValue
Object getReturnedValue()- Returns:
- The resulting value of the method invocation, may be
null
-
getThrowable
Throwable getThrowable()- Returns:
- The throwable raised by the method invocation, maybe
null
-
threwException
boolean threwException()- Returns:
true
if an exception was raised,false
otherwise
-
getLocationOfStubbing
String getLocationOfStubbing()- Returns:
- Location of the stub invocation
-