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

cucumber.runtime.Glue Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy