Home
last modified time | relevance | path

Searched refs:getReceiversForIntent (Results 1 – 3 of 3) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowApplication.java137 public List<BroadcastReceiver> getReceiversForIntent(Intent intent) { in getReceiversForIntent() method in ShadowApplication
138 return getShadowInstrumentation().getReceiversForIntent(intent); in getReceiversForIntent()
DShadowInstrumentation.java674 List<BroadcastReceiver> getReceiversForIntent(Intent intent) {
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowApplicationTest.java472 assertThat(shadowApplication.getReceiversForIntent(new Intent("Foo"))).hasSize(2); in canFindAllReceiversForAnIntent()