OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getBoundServiceConnections
(Results
1 - 4
of
4
) sorted by null
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowApplicationTest.java
525
assertThat(shadowApplication.
getBoundServiceConnections
()).hasSize(0);
527
assertThat(shadowApplication.
getBoundServiceConnections
()).hasSize(1);
528
assertThat(shadowApplication.
getBoundServiceConnections
().get(0))
539
assertThat(shadowApplication.
getBoundServiceConnections
()).hasSize(0);
541
assertThat(shadowApplication.
getBoundServiceConnections
()).hasSize(1);
542
assertThat(shadowApplication.
getBoundServiceConnections
().get(0)).isSameAs(expectedServiceConnection);
551
assertThat(shadowApplication.
getBoundServiceConnections
()).hasSize(1);
554
assertThat(shadowApplication.
getBoundServiceConnections
()).hasSize(0);
ShadowContextImplTest.java
187
assertThat(shadowOf(context).
getBoundServiceConnections
()).hasSize(1);
198
assertThat(shadowOf(context).
getBoundServiceConnections
()).hasSize(1);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowApplication.java
117
public List<ServiceConnection>
getBoundServiceConnections
() {
118
return getShadowInstrumentation().
getBoundServiceConnections
();
ShadowInstrumentation.java
526
protected List<ServiceConnection>
getBoundServiceConnections
() {
Completed in 278 milliseconds