OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getNextStartedService
(Results
1 - 5
of
5
) sorted by null
/external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
StartedServiceMatcher.java
55
Intent actualStartedIntent = shadowOf((ContextWrapper) actualContext).
getNextStartedService
();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContextWrapper.java
179
public Intent
getNextStartedService
() {
180
return getShadowApplication().
getNextStartedService
();
ShadowApplication.java
260
public Intent
getNextStartedService
() {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContextWrapperTest.java
181
assertEquals("foo", shadowOf(Robolectric.application).
getNextStartedService
().getAction());
ApplicationTest.java
218
assertNull(shadowApplication.
getNextStartedService
());
Completed in 1832 milliseconds