Lines Matching defs:method
22 import java.lang.reflect.Method;
31 * <li>You can run any test method on the UI thread (see {@link android.test.UiThreadTest}).</li>
80 * For each test method invocation, the Activity will not actually be created until the first
81 * time this method is called.
89 * If your test method is annotated with {@link android.test.UiThreadTest}, then your Activity
90 * will be started automatically just before your test method is run. You still call this
91 * method in order to get the Activity under test.
114 * Call this method before the first call to {@link #getActivity} to inject a customized Intent
121 * If your test method is annotated with {@link android.test.UiThreadTest}, then you must call
124 * <p>The default Intent (if this method is not called) is:
136 * Call this method before the first call to {@link #getActivity} to set the initial touch
143 * If your test method is annotated with {@link android.test.UiThreadTest}, then you must call
185 Method method = getClass().getMethod(getName(), (Class[]) null);
186 if (method.isAnnotationPresent(UiThreadTest.class)) {