1package org.robolectric;
2
3import java.lang.reflect.Method;
4
5public interface TestLifecycleApplication {
6  void beforeTest(Method method);
7
8  void prepareTest(Object test);
9
10  void afterTest(Method method);
11}