Home
last modified time | relevance | path

Searched refs:buildIntentService (Results 1 – 2 of 2) sorted by relevance

/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/
DRobolectric.java43 …public static <T extends IntentService> IntentServiceController<T> buildIntentService(Class<T> ser… in buildIntentService() method in Robolectric
44 return buildIntentService(serviceClass, null); in buildIntentService()
47 …public static <T extends IntentService> IntentServiceController<T> buildIntentService(Class<T> ser… in buildIntentService() method in Robolectric
52 return buildIntentService(serviceClass).create().get(); in setupIntentService()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/controller/
DIntentServiceControllerTest.java25 …private final IntentServiceController<MyService> controller = Robolectric.buildIntentService(MySer…
48 …MyService myService = Robolectric.buildIntentService(MyService.class, new Intent(Intent.ACTION_VIE… in onBindShouldSetIntentComponentWithCustomIntentWithoutComponentSet()