OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shadowIntent
(Results
1 - 2
of
2
) sorted by null
/external/robolectric/v1/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 303 milliseconds