blob: 6d91ba1608cd5d5197dba4e677466d450969e9bd [file] [log] [blame]
package com.xtremelabs.robolectric;
import org.junit.runners.model.InitializationError;
import java.lang.reflect.Method;
public class WithoutTestDefaultsRunner extends RobolectricTestRunner {
public WithoutTestDefaultsRunner(Class<?> testClass) throws InitializationError {
super(testClass);
}
@Override public void internalBeforeTest(Method method) {
// Don't do any resource loading or shadow class binding, because that's what we're trying to test here.
}
}