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

utils.FrameworkInitializer Maven / Gradle / Ivy

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