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