
net.thucydides.jbehave.ThucydidesJBehaveTestRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thucydides-jbehave Show documentation
Show all versions of thucydides-jbehave Show documentation
Thucydides JBehave integration
The newest version!
package net.thucydides.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 ThucydidesJBehaveTestRunner extends Suite {
private final Class> testClass;
public ThucydidesJBehaveTestRunner(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