Home | History | Annotate | Download | only in cyclic
      1 package test.cyclic;
      2 
      3 import org.testng.annotations.BeforeClass;
      4 
      5 public abstract class BaseIntegrationTest {
      6 
      7     @BeforeClass(groups="integration")
      8     protected void initIntegrationTesting() {
      9         //...
     10     }
     11 
     12     @BeforeClass(groups="integration")
     13     void executeBeforeClassDbOperations() {
     14         //...
     15     }
     16 
     17  }
     18 
     19