Lines Matching full:link
39 * calls. <insert link to Service lifecycle doc here>.
44 * {@link #startService} or {@link #bindService}. This gives you a chance
47 * <li>When your test calls {@link #startService} or {@link #bindService}
50 * <li>After your test completes, the test case {@link #tearDown} function is
56 * Every service has two inherent dependencies, the {@link android.content.Context Context} in
57 * which it runs, and the {@link android.app.Application Application} with which it is associated.
62 * Context, and a generic {@link android.test.mock.MockApplication MockApplication} object.
64 * {@link AndroidTestCase#setContext(Context) setContext()} or
65 * {@link #setApplication setApplication()}. You must do this <i>before</i> calling
67 * number of alternatives for Context, including {link android.test.mock.MockContext MockContext},
68 * {@link android.test.RenamingDelegatingContext RenamingDelegatingContext}, and
69 * {@link android.content.ContextWrapper ContextWrapper}.
112 * it. This will be called automatically by {@link #startService} or by {@link #bindService}.
113 * If you wish to call {@link AndroidTestCase#setContext(Context) setContext()} or
114 * {@link #setApplication setApplication()}, you must do so before calling this function.
143 * {@link android.content.Context#startService Context.startService()}, providing the
145 * be stopped by {@link #tearDown}.
147 * @param intent The Intent as if supplied to {@link android.content.Context#startService}.
169 * {@link android.content.Context#bindService Context.bindService()}, providing the
174 * {@link android.os.IBinder} is usually for a complex interface
181 * @param intent The Intent as if supplied to {@link android.content.Context#bindService}.
208 * call onDestroy(). Ordinarily this will be called automatically (by {@link #tearDown}, but
247 * a new {@link android.test.mock.MockApplication MockApplication} object will be generated.