HomeSort by relevance Sort by last modified time
    Searched refs:shadowIntent (Results 1 - 2 of 2) sorted by null

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
StartedServiceMatcher.java 7 import com.xtremelabs.robolectric.shadows.ShadowIntent;
62 ShadowIntent shadowIntent = shadowOf(actualStartedIntent);
64 //boolean intentsMatch = shadowOf(expectedIntent).realIntentEquals(shadowIntent);
66 boolean intentsMatch = shadowOf(expectedIntent).getIntentClass().equals(shadowIntent.getIntentClass());
71 Set<String> keys = shadowIntent.getExtras().keySet();
StartedMatcher.java 7 import com.xtremelabs.robolectric.shadows.ShadowIntent;
53 ShadowIntent shadowIntent = shadowOf(actualStartedIntent);
55 boolean intentsMatch = shadowOf(expectedIntent).realIntentEquals(shadowIntent);

Completed in 2804 milliseconds