SuperX-Kernmodul
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
382 B

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<String, String> dbtProfile();
}