All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.invocation.InvocationOnMock Maven / Gradle / Ivy

There is a newer version: 2.0.2-beta
Show newest version
/*
 * 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;

/**
 * An invocation on a mock
 * 

* A placeholder for mock, the method that was called and the arguments that were passed. */ public interface InvocationOnMock extends Serializable { /** * returns the mock object * * @return mock object */ Object getMock(); /** * returns the method * * @return method */ Method getMethod(); /** * returns arguments passed to the method * * @return arguments */ Object[] getArguments(); /** * 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; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy