Moved some methods

This commit is contained in:
Lukas Eder 2012-12-14 13:09:27 +01:00
parent 28971a513e
commit 32f89104b1

View File

@ -408,6 +408,11 @@ public abstract class jOOQAbstractTest<
connection.setAutoCommit(autocommit);
}
@BeforeClass
public static void testStart() {
log.info("STARTING");
}
@AfterClass
public static void quit() throws Exception {
log.info("QUITTING");
@ -765,16 +770,6 @@ public abstract class jOOQAbstractTest<
return "";
}
@BeforeClass
public static void testStart() {
log.info("STARTING");
}
@AfterClass
public static void testFinish() {
log.info("FINISHING");
}
// IMPORTANT! Make this the first test, to prevent side-effects
@Test
public void testInsertIdentity() throws Exception {