Home | History | Annotate | Download | only in test

Lines Matching full:calls

39  * calls, as described in the
52 * test methods calls {@link #startService} or {@link #bindService}. This gives you an
57 * When one of your test methods calls {@link #startService ServiceTestCase.startService()}
58 * or {@link #bindService ServiceTestCase.bindService()}, the test case calls
59 * {@link android.app.Service#onCreate() Service.onCreate()} and then calls either
66 * After each test method finishes, the test case calls the {@link #tearDown} method. This
67 * method stops and destroys the service with the appropriate calls, depending on how the
118 * a test calls {@link #startService} or {@link #bindService}.
224 * @return An object whose type is a subclass of IBinder, for making further calls into
246 * Makes the necessary calls to stop (or unbind) the service under test, and
247 * calls onDestroy(). Ordinarily this is called automatically (by {@link #tearDown}, but