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