io.cucumber.plugin.StrictAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-plugin Show documentation
Show all versions of cucumber-plugin Show documentation
Plugin interface for Cucumber-JVM
package io.cucumber.plugin;
import org.apiguardian.api.API;
/**
* Interface for Plugins that need to know if the Runtime is strict.
*
* @deprecated strict mode is enabled by default and will be removed.
*/
@Deprecated
@API(status = API.Status.STABLE)
public interface StrictAware extends Plugin {
/**
* When set to strict the plugin should indicate failure for undefined and
* pending steps
*
* @param strict true if the runtime is in strict mode
*/
void setStrict(boolean strict);
}