org.mockito.invocation.InvocationOnMock Maven / Gradle / Ivy
Show all versions of mockito-core Show documentation
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.invocation;
import java.io.Serializable;
import java.lang.reflect.Method;
import org.mockito.NotExtensible;
/**
* An invocation on a mock.
*
*
* A placeholder for mock, the method that was called and the arguments that were passed.
*/
@NotExtensible
public interface InvocationOnMock extends Serializable {
/**
* returns the mock object
*
* @return mock object
*/
Object getMock();
/**
* returns the method
*
* @return method
*/
Method getMethod();
/**
* Returns unprocessed arguments whereas {@link #getArguments()} returns
* arguments already processed (e.g. varargs expended, etc.).
*
* @return unprocessed arguments, exactly as provided to this invocation.
* @since 4.7.0
*/
Object[] getRawArguments();
/**
* Returns arguments passed to the method.
*
* Vararg are expanded in this array.
*
* @return arguments
*/
Object[] getArguments();
/**
* Returns casted argument at the given index.
*
* Can lookup in expanded arguments form {@link #getArguments()}.
*
* This method is preferred over {@link #getArgument(int, Class)} for readability. Please read
* the documentation of {@link #getArgument(int, Class)} for an overview of situations when
* that method is preferred over this one.
*
* @param index argument index
* @return casted argument at the given index
* @since 2.1.0
*/
T getArgument(int index);
/**
* Returns casted argument at the given index. This method is analogous to
* {@link #getArgument(int)}, but is necessary to circumvent issues when dealing with generics.
*
* In general, {@link #getArgument(int)} is the appropriate function to use. This particular
* function is only necessary if you are doing one of the following things:
*
*
* - You want to directly invoke a method on the result of {@link #getArgument(int)}.
* - You want to directly pass the result of the invocation into a function that accepts a generic parameter.
*
*
* If you prefer to use {@link #getArgument(int)} instead, you can circumvent the compilation
* issues by storing the intermediate result into a local variable with the correct type.
*
* @param index argument index
* @param clazz class to cast the argument to
* @return casted argument at the given index
*/
T getArgument(int index, Class clazz);
/**
* calls real method
*
* Warning: depending on the real implementation it might throw exceptions
*
* @return whatever the real method returns / throws
* @throws Throwable in case real method throws
*/
Object callRealMethod() throws Throwable;
}