Home | History | Annotate | Download | only in shadows
      1 package org.robolectric.shadows;
      2 
      3 import android.app.SearchManager;
      4 import android.app.SearchableInfo;
      5 import android.content.ComponentName;
      6 import org.robolectric.annotation.Implementation;
      7 import org.robolectric.annotation.Implements;
      8 
      9 @Implements(SearchManager.class)
     10 public class ShadowSearchManager {
     11 
     12   @Implementation
     13   public SearchableInfo getSearchableInfo(ComponentName componentName) {
     14     // Prevent Robolectric from calling through
     15     return null;
     16   }
     17 }
     18