org.mockito.stubbing.Answer4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-core Show documentation
Show all versions of mockito-core Show documentation
Mock objects library for java
package org.mockito.stubbing;
import org.mockito.Incubating;
/**
* Three parameter function which returns something
*
* @param return type
* @param input parameter 1 type
* @param input parameter 2 type
* @param input parameter 3 type
* @param input parameter 4 type
*/
@Incubating
public interface Answer4 {
T answer(A a, B b, C c, D d);
}