com.tngtech.jgiven.StepFunction Maven / Gradle / Ivy
package com.tngtech.jgiven;
/**
* A functional interface for defining ad-hoc steps.
*
* @see Stage#$(String, StepFunction)
* @param the stage in which this step is executed
* @since 0.7.1
*/
public interface StepFunction {
public void apply( STAGE stage ) throws Exception;
}