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

cucumber.runtime.java.guice.ScenarioScope Maven / Gradle / Ivy

There is a newer version: 7.19.0
Show newest version
package cucumber.runtime.java.guice;

import com.google.inject.Scope;

/**
 * A custom Guice scope that enables classes to be bound in a scope that will last for the lifetime of one Cucumber
 * scenario.
 */
public interface ScenarioScope extends Scope {
    void enterScope();
    void exitScope();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy