OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hasReceiverForIntent
(Results
1 - 2
of
2
) sorted by null
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowApplication.java
131
public boolean
hasReceiverForIntent
(Intent intent) {
132
return getShadowInstrumentation().
hasReceiverForIntent
(intent);
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowApplicationTest.java
458
assertFalse(shadowApplication.
hasReceiverForIntent
(new Intent("Foo")));
461
assertTrue(shadowApplication.
hasReceiverForIntent
(new Intent("Foo")));
468
assertFalse(shadowApplication.
hasReceiverForIntent
(new Intent("Foo")));
Completed in 70 milliseconds