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

cucumber.runner.HookTestStep Maven / Gradle / Ivy

There is a newer version: 7.18.0
Show newest version
package cucumber.runner;

import cucumber.api.HookType;

final class HookTestStep extends TestStep implements cucumber.api.HookTestStep {
    private final HookType hookType;

    HookTestStep(HookType hookType, HookDefinitionMatch definitionMatch) {
        super(definitionMatch);
        this.hookType = hookType;
    }

    @Override
    public HookType getHookType() {
        return hookType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy