1 package test.abstractconfmethod; 2 3 import org.testng.annotations.BeforeMethod; 4 5 import test.abstractconfmethod.foo.A; 6 7 public abstract class B extends A 8 { 9 @BeforeMethod(dependsOnMethods = {"testSetup"}) doSomethingInMiddle()10 public void doSomethingInMiddle() {} 11 12 } 13