Lines Matching full:will
40 * In order to support the lifecycle of a Service, this test case will make the
43 * <ul><li>The test case will not call onCreate() until your test calls
48 * the test case will call onCreate(), and then call the corresponding entry point in your service.
49 * It will record any parameters or other support values necessary to support the lifecycle.</li>
51 * automatically called, and it will stop and destroy your service with the appropriate
61 * <p>If simply run your tests as-is, your Service will be injected with a fully-functional
98 * This will do the work to instantiate the Service under test. After this, your test
112 * it. This will be called automatically by {@link #startService} or by {@link #bindService}.
144 * arguments it supplied. If you use this method to start the service, it will automatically
207 * This will make the necessary calls to stop (or unbind) the Service under test, and
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.
249 * @param application The Application object that will be injected into the Service under test.