1 package test.cyclic;
2 
3 import org.testng.annotations.Test;
4 
5 public abstract class AbstractGenericTests extends BaseIntegrationTest {
6 
7     @Test(groups="integration")
testSomething()8     public final void testSomething() {
9         //...
10     }
11 
12  }
13 
14