DBEnvironment environment = workingEnvironment();
return new CleanFixture(environment);
}
public boolean cleanTable(String tables) {
DBEnvironment environment = workingEnvironment();
String ts[] = tables.split("[;,]");
for (String table : ts) {
DbFixtureUtil.cleanTable(environment, table);
}
return true;