01: package test.cyclic;
02:
03: import org.testng.annotations.BeforeClass;
04:
05: public abstract class BaseIntegrationTest {
06:
07: @BeforeClass(groups="integration")
08: protected void initIntegrationTesting() {
09: //...
10: }
11:
12: @BeforeClass(groups="integration")
13: void executeBeforeClassDbOperations() {
14: //...
15: }
16:
17: }
|