package de.superx; import java.util.Map; import javax.sql.DataSource; import org.junit.Ignore; @Ignore public interface TestDbManager { static final String EDUETL_DB = "eduetl"; static final String HISINONE_DB ="hisinone"; void setupTestDbs(); void removeTestDbs(); DataSource getDataSource(String logicalDbName); Map dbtProfile(); }