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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy