1 package test.abstractconfmethod.foo;
2 
3 public abstract class A
4 {
testSetup()5    public abstract void testSetup();
6 }
7