![JAR search and dependency download from the Maven repository](/logo.png)
com.insightfullogic.lambdabehave.specifications.Column 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;
/**
* A column represents a single series of data values.
*/
public interface Column {
/**
* Specify the actual behaviour.
*
* @param description a human readable description of the behaviour you're expecting.
* @param specification a function which describes in code the expected behaviour.
* @return this
*/
Column toShow(String description, ColumnDataSpecification specification);
/**
* Add another element to the column.
*
* @param value the element to with.
* @return this the fluent builder object
*/
Column and(T value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy