cucumber.runtime.Glue Maven / Gradle / Ivy
package cucumber.runtime;
import cucumber.api.StepDefinitionReporter;
import gherkin.GherkinDialect;
import gherkin.pickles.PickleStep;
import java.util.List;
//TODO: now that this is just basically a java bean storing values
// I don't think it needs an interface anymore...
public interface Glue {
void addStepDefinition(StepDefinition stepDefinition) throws DuplicateStepDefinitionException;
void addBeforeHook(HookDefinition hookDefinition);
void addAfterHook(HookDefinition hookDefinition);
List getBeforeHooks();
List getAfterHooks();
StepDefinitionMatch stepDefinitionMatch(String featurePath, PickleStep step);
void reportStepDefinitions(StepDefinitionReporter stepDefinitionReporter);
void removeScenarioScopedGlue();
}