Home | History | Annotate | Download | only in robolectric

Lines Matching refs:method

3 import java.lang.reflect.Method;
8 * Called before each test method is run.
10 * @param method the test method about to be run
12 @Override public void beforeTest(final Method method) {
14 ((TestLifecycleApplication) RuntimeEnvironment.application).beforeTest(method);
25 * Called after each test method is run.
27 * @param method the test method that just ran.
29 @Override public void afterTest(final Method method) {
31 ((TestLifecycleApplication) RuntimeEnvironment.application).afterTest(method);