1 package test.abstractmethods;
2 
3 import org.testng.annotations.Test;
4 
5 abstract public class CRUDTest {
6 
7   @Test
create()8   public abstract void create();
9 
10   @Test(dependsOnMethods = "create")
read()11   public abstract void read();
12 }
13