1 package test.integration; 2 3 import org.junit.Before; 4 5 import core.application.MyApplicationStarter; 6 import de.fhdw.wtf.context.core.ApplicationStarter; 7 8 public abstract class TestBase implements TestBaseInterface { 9 10 @Override 11 @Before 12 public void setUp() throws Exception { 13 return; 14 } 15 16 protected ApplicationStarter getApplicationStarter() { 17 return new MyApplicationStarter(); 18 } 19 20 }