com.greenpepper.Specification Maven / Gradle / Ivy
package com.greenpepper;
/**
* Specification interface.
*
* @author oaouattara
* @version $Id: $Id
*/
public interface Specification extends ExecutionContext
{
/**
* nextExample.
*
* @return a {@link com.greenpepper.Example} object.
*/
Example nextExample();
/**
* hasMoreExamples.
*
* @return a boolean.
*/
boolean hasMoreExamples();
/**
* exampleDone.
*
* @param statistics a {@link com.greenpepper.Statistics} object.
*/
void exampleDone( Statistics statistics );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy