net.thucydides.jbehave.ThucydidesJUnitStory 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.thucydides.jbehave;
import net.serenitybdd.jbehave.SerenityStory;
import net.thucydides.core.util.EnvironmentVariables;
/**
* @deprecated Use SerenityStory instead
*
* Run an individual JBehave story in JUnit, where the name of the story is derived from the name of the test.
* For example, a class called MyStory.java would run a JBehave story called "my_story.story" or MyStory.story.
*/
@Deprecated
public class ThucydidesJUnitStory extends SerenityStory {
public ThucydidesJUnitStory() {
super();
}
public ThucydidesJUnitStory(EnvironmentVariables environmentVariables) {
super(environmentVariables);
}
protected ThucydidesJUnitStory(net.thucydides.core.webdriver.Configuration configuration) {
super(configuration);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy