1 package test.abstractconfmethod; 2 3 import org.testng.annotations.BeforeMethod; 4 import org.testng.annotations.Test; 5 6 public class C extends B 7 { 8 @Override 9 @BeforeMethod testSetup()10 public void testSetup() {} 11 12 @Test(description="Test depends on a config method that has implements an abstract methods") test1()13 public void test1() {} 14 } 15