net.serenitybdd.jbehave.SerenityJBehaveTestRunner 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;
import org.junit.runner.Runner;
import org.junit.runners.Suite;
import org.junit.runners.model.InitializationError;
import java.util.Collections;
import java.util.List;
public class SerenityJBehaveTestRunner extends Suite {
private final Class> testClass;
public SerenityJBehaveTestRunner(Class> klass) throws InitializationError {
super(klass, Collections.emptyList());
this.testClass = klass;
}
@Override
protected List getChildren() {
return super.getChildren(); //To change body of overridden methods use File | Settings | File Templates.
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy