Home
last modified time | relevance | path

Searched refs:buildIntentService (Results 1 – 3 of 3) 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()
/external/dagger2/javatests/dagger/android/support/functional/
DInjectorsTest.java59 intentService = Robolectric.buildIntentService(TestIntentService.class).create().get(); in setUp()