Reordered some test methods

This commit is contained in:
Lukas Eder 2012-11-02 12:31:01 +01:00
parent 54c764ae9c
commit 4c224b77c6

View File

@ -1501,6 +1501,11 @@ public abstract class jOOQAbstractTest<
new AggregateWindowFunctionTests(this).testListAgg();
}
@Test
public void testWindowFunctions() throws Exception {
new AggregateWindowFunctionTests(this).testWindowFunctions();
}
@Test
public void testStoredFunctions() throws Exception {
new RoutineAndUDTTests(this).testStoredFunctions();
@ -1646,11 +1651,6 @@ public abstract class jOOQAbstractTest<
new GeneralTests(this).testDual();
}
@Test
public void testWindowFunctions() throws Exception {
new AggregateWindowFunctionTests(this).testWindowFunctions();
}
@Test
public void testPackage() throws Exception {
new RoutineAndUDTTests(this).testPackage();