
utils.FrameworkInitializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Utilities Show documentation
Show all versions of Utilities Show documentation
Java Utilities library containing general use utilities
package utils;
import org.junit.runner.Description;
import org.junit.runner.notification.RunNotifier;
import org.junit.runners.ParentRunner;
import org.junit.runners.model.InitializationError;
import java.util.List;
public class FrameworkInitializer extends ParentRunner> {
protected FrameworkInitializer(Class> testClass) throws InitializationError {
super(testClass);
}
@Override
protected List> getChildren() {
return null;
}
@Override
protected Description describeChild(ParentRunner> parentRunner) {
return null;
}
@Override
protected void runChild(ParentRunner> parentRunner, RunNotifier runNotifier) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy