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

cucumber.runtime.UnreportedStepExecutor Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package cucumber.runtime;

import gherkin.I18n;
import gherkin.formatter.model.DataTableRow;
import gherkin.formatter.model.DocString;

import java.util.List;

public interface UnreportedStepExecutor {
    //TODO: Maybe this should go into the cucumber step execution model and it should return the result of that execution!
    void runUnreportedStep(String featurePath, I18n i18n, String stepKeyword, String stepName, int line, List dataTableRows, DocString docString) throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy