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

net.thucydides.jbehave.ThucydidesJUnitStory Maven / Gradle / Ivy

There is a newer version: 1.46.0
Show newest version
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