Home | History | Annotate | Download | only in matchers

Lines Matching refs:service

6 import android.service.wallpaper.WallpaperService;
21 private WallpaperService service;
29 service = new WallpaperService() {
41 givesFailureMessage((Context) service, "to start " + createIntent(WallpaperService.class) + ", but didn't start anything"));
44 givesFailureMessage((Context) service, "to start " + createIntent(WallpaperService.class, "view") + ", but didn't start anything"));
47 givesFailureMessage((Context) service, "to start " + intentWithExtra + ", but didn't start anything"));
54 service.startService(actualIntent);
56 givesFailureMessage((Context) service, "to start " + createIntent(IntentService.class) + ", but started " + actualIntent));
58 service.startService(actualIntent);
60 givesFailureMessage((Context) service, "to start " + createIntent(IntentService.class, "view") + ", but started " + actualIntent));
62 service.startService(actualIntent);
64 givesFailureMessage((Context) service, "to start " + intentWithExtra + ", but did not get the same extras keys"));