![JAR search and dependency download from the Maven repository](/logo.png)
com.insightfullogic.lambdabehave.specifications.TwoColumnDataSpecification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lambda-behave Show documentation
Show all versions of lambda-behave Show documentation
A modern testing and behavioural specification framework for Java 8
package com.insightfullogic.lambdabehave.specifications;
import com.insightfullogic.lambdabehave.expectations.Expect;
/**
* Implement this interface to specify a behaviour that requires
* two data values.
*/
@FunctionalInterface
public interface TwoColumnDataSpecification {
/**
* Callback method which specifies the actual behaviour.
*
* @param expect the callback object used to describe expectations
* @param first the first parameter value
* @param second the second parameter value
*/
public void specifyBehaviour(Expect expect, F first, S second) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy