Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public interface TestRunnerAdaptor
- {
- void beforeSuite() throws Exception;
- void afterSuite() throws Exception;
- void beforeClass(Class<?> testClass) throws Exception;
- void afterClass(Class<?> testClass) throws Exception;
- void before(Class<?> testClass, Method testMethod) throws Exception;
- void after(Class<?> testClass, Method testMethod) throws Exception;
- TestResult test(TestMethodExecutor testMethodExecutor) throws Exception;
- }
Add Comment
Please, Sign In to add comment