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

net.serenitybdd.jbehave.GivenStoryMonitor Maven / Gradle / Ivy

There is a newer version: 1.46.0
Show newest version
package net.serenitybdd.jbehave;

public class GivenStoryMonitor {

    private boolean inGivenStory = false;

    public void enteringGivenStory() {
        inGivenStory = true;
    }

    public boolean isInGivenStory() {
        return inGivenStory;
    }

    public void exitingGivenStory() {
        inGivenStory = false;
    }

    public void clear() {
        inGivenStory = false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy