Home | History | Annotate | Download | only in shadows
      1 package org.robolectric.shadows;
      2 
      3 import android.os.StrictMode;
      4 import org.robolectric.annotation.Implementation;
      5 import org.robolectric.annotation.Implements;
      6 
      7 @Implements(StrictMode.class)
      8 public class ShadowStrictMode {
      9 
     10   @Implementation
     11   public static void setVmPolicy(StrictMode.VmPolicy p) {
     12     // Prevent Robolectric from calling through
     13   }
     14 }
     15