* @param emptyTables If true, the default tables will be cleaned
* @param resetSequences If true, sequences (or identity columns) will be reset to 1
* @param createSchema If true, the Schema will be created (or verified) using Liquibase
*/
public void prepareDefaultTestData(boolean emptyTables, boolean resetSequences, boolean createSchema) {
DbType dbType = this.connUtil.getDbType();
if (createSchema) {
this.runLiquibaseChangeLog("ju-testing/data/default-changeLog.xml");
// For non-MySQL DBs, we also need to create the hibernate_sequence sequence...