aslak

Arquillian

Mar 30th, 2010
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. public interface TestRunnerAdaptor
  2. {
  3.    void beforeSuite() throws Exception;
  4.    void afterSuite() throws Exception;
  5.  
  6.    void beforeClass(Class<?> testClass) throws Exception;
  7.    void afterClass(Class<?> testClass) throws Exception;
  8.    
  9.    void before(Class<?> testClass, Method testMethod) throws Exception;
  10.    void after(Class<?> testClass, Method testMethod) throws Exception;
  11.  
  12.    TestResult test(TestMethodExecutor testMethodExecutor) throws Exception;
  13. }
Add Comment
Please, Sign In to add comment