Package org.junit.runners.model

Source Code of org.junit.runners.model.RunnerBuilderStub

package org.junit.runners.model;

import org.junit.runner.Runner;
import org.junit.runner.RunnerSpy;

public class RunnerBuilderStub extends RunnerBuilder {
    @Override
    public Runner runnerForClass(Class<?> testClass) throws Throwable {
        return new RunnerSpy(testClass, this);
    }
}
TOP

Related Classes of org.junit.runners.model.RunnerBuilderStub

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.