org.mockito.stubbing.Answer1 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;
/**
* One parameter function which returns something
*
* @param return type
* @param input parameter 1 type
*/
@Incubating
public interface Answer1 {
T answer(A a);
}