Home | History | Annotate | Download | only in robolectric
      1 package com.xtremelabs.robolectric;
      2 
      3 import org.junit.runners.model.InitializationError;
      4 
      5 import java.lang.reflect.Method;
      6 
      7 public class WithoutTestDefaultsRunner extends RobolectricTestRunner {
      8     public WithoutTestDefaultsRunner(Class<?> testClass) throws InitializationError {
      9         super(testClass);
     10     }
     11 
     12     @Override public void internalBeforeTest(Method method) {
     13         // Don't do any resource loading or shadow class binding, because that's what we're trying to test here.
     14     }
     15 }
     16