net.thucydides.junit.runners.ThucydidesParameterizedRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serenity-junit Show documentation
Show all versions of serenity-junit Show documentation
Serenity JUnit integration
package net.thucydides.junit.runners;
import net.serenitybdd.junit.runners.SerenityParameterizedRunner;
import net.thucydides.core.batches.BatchManager;
import net.thucydides.core.webdriver.Configuration;
import net.thucydides.core.webdriver.WebDriverFactory;
/**
* @deprecated Replaced by SerenityParameterizedRunner
*
* Provided for backwards compatibility
*/
@Deprecated
public class ThucydidesParameterizedRunner extends SerenityParameterizedRunner {
public ThucydidesParameterizedRunner(Class> klass, Configuration configuration, WebDriverFactory webDriverFactory, BatchManager batchManager) throws Throwable {
super(klass, configuration, webDriverFactory, batchManager);
}
public ThucydidesParameterizedRunner(Class> klass) throws Throwable {
super(klass);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy