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

org.mockito.stubbing.Answer1 Maven / Gradle / Ivy

There is a newer version: 5.13.0
Show newest version
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);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy