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

com.tngtech.jgiven.StepFunction Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy