use of org.junit.AfterClass in project dal by ctripcorp.
the class DalTableDaoShardByDbOracleTest method tearDownAfterClass.
@AfterClass
public static void tearDownAfterClass() throws Exception {
for (int i = 0; i < mod; i++) {
DalHints hints = new DalHints();
String[] sqls = new String[] { DROP_TABLE_SEQ, DROP_TABLE_TRIG, DROP_TABLE_SQL };
client.batchUpdate(sqls, hints.inShard(i));
}
}
use of org.junit.AfterClass in project textdb by TextDB.
the class ComparableMatcherTest method cleanUp.
@AfterClass
public static void cleanUp() throws TexeraException {
RelationManager relationManager = RelationManager.getInstance();
relationManager.deleteTable(PEOPLE_TABLE);
relationManager.deleteTable(PEOPLE_TABLE_2);
}
use of org.junit.AfterClass in project textdb by TextDB.
the class OneToNBroadcastConnectorTest method cleanUp.
@AfterClass
public static void cleanUp() throws Exception {
RelationManager relationManager = RelationManager.getInstance();
relationManager.deleteTable(PEOPLE_TABLE);
}
use of org.junit.AfterClass in project textdb by TextDB.
the class ProjectionOperatorTest method cleanUp.
@AfterClass
public static void cleanUp() throws Exception {
RelationManager relationManager = RelationManager.getInstance();
relationManager.deleteTable(PEOPLE_TABLE);
}
use of org.junit.AfterClass in project graphhopper by graphhopper.
the class GraphHopperDataflagEncoderSpatialRulesIT method cleanUp.
@AfterClass
public static void cleanUp() {
Helper.removeDir(new File(DIR));
shutdownJetty(true);
}
Aggregations