Home
last modified time | relevance | path

Searched refs:getBoundServiceConnections (Results 1 – 4 of 4) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowApplicationTest.java525 assertThat(shadowApplication.getBoundServiceConnections()).hasSize(0); in bindServiceShouldAddServiceConnectionToListOfBoundServiceConnections()
527 assertThat(shadowApplication.getBoundServiceConnections()).hasSize(1); in bindServiceShouldAddServiceConnectionToListOfBoundServiceConnections()
528 assertThat(shadowApplication.getBoundServiceConnections().get(0)) in bindServiceShouldAddServiceConnectionToListOfBoundServiceConnections()
539 assertThat(shadowApplication.getBoundServiceConnections()).hasSize(0); in bindServiceShouldAddServiceConnectionToListOfBoundServiceConnectionsEvenIfServiceUnboundable()
541 assertThat(shadowApplication.getBoundServiceConnections()).hasSize(1); in bindServiceShouldAddServiceConnectionToListOfBoundServiceConnectionsEvenIfServiceUnboundable()
542 …assertThat(shadowApplication.getBoundServiceConnections().get(0)).isSameAs(expectedServiceConnecti… in bindServiceShouldAddServiceConnectionToListOfBoundServiceConnectionsEvenIfServiceUnboundable()
551 assertThat(shadowApplication.getBoundServiceConnections()).hasSize(1); in unbindServiceShouldRemoveServiceConnectionFromListOfBoundServiceConnections()
554 assertThat(shadowApplication.getBoundServiceConnections()).hasSize(0); in unbindServiceShouldRemoveServiceConnectionFromListOfBoundServiceConnections()
DShadowContextImplTest.java187 assertThat(shadowOf(context).getBoundServiceConnections()).hasSize(1); in bindServiceAsUser()
198 assertThat(shadowOf(context).getBoundServiceConnections()).hasSize(1); in bindService()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowApplication.java117 public List<ServiceConnection> getBoundServiceConnections() { in getBoundServiceConnections() method in ShadowApplication
118 return getShadowInstrumentation().getBoundServiceConnections(); in getBoundServiceConnections()
DShadowInstrumentation.java526 protected List<ServiceConnection> getBoundServiceConnections() {