net.serenitybdd.jbehave.GivenStoryMonitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serenity-jbehave Show documentation
Show all versions of serenity-jbehave Show documentation
Serenity JBehave integration
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