Examples of SelectTests


Examples of org.jooq.test._.testcases.SelectTests

        new DataTypeTests(this).testCustomConversion();
    }

    @Test
    public void testForUpdateClauses() throws Exception {
        new SelectTests(this).testForUpdateClauses();
    }
View Full Code Here

Examples of org.jooq.test._.testcases.SelectTests

        new GeneralTests(this).testSequences();
    }

    @Test
    public void testSelectSimpleQuery() throws Exception {
        new SelectTests(this).testSelectSimpleQuery();
    }
View Full Code Here

Examples of org.jooq.test._.testcases.SelectTests

        new AggregateWindowFunctionTests(this).testSelectCountQuery();
    }

    @Test
    public void testSelectQuery() throws Exception {
        new SelectTests(this).testSelectQuery();
    }
View Full Code Here

Examples of org.jooq.test._.testcases.SelectTests

        new PredicateTests(this).testLargeINCondition();
    }

    @Test
    public void testSubSelect() throws Exception {
        new SelectTests(this).testSubSelect();
    }
View Full Code Here

Examples of org.jooq.test._.testcases.SelectTests

        new SelectTests(this).testSubSelect();
    }

    @Test
    public void testDistinctQuery() throws Exception {
        new SelectTests(this).testDistinctQuery();
    }
View Full Code Here

Examples of org.jooq.test._.testcases.SelectTests

        new FormatTests(this).testIntoXML();
    }

    @Test
    public void testCombinedSelectQuery() throws Exception {
        new SelectTests(this).testCombinedSelectQuery();
    }
View Full Code Here

Examples of org.jooq.test._.testcases.SelectTests

        new SelectTests(this).testCombinedSelectQuery();
    }

    @Test
    public void testComplexUnions() throws Exception {
        new SelectTests(this).testComplexUnions();
    }
View Full Code Here

Examples of org.jooq.test._.testcases.SelectTests

        assertEquals(BOOK_IDS, books.getValues(b_ID));
    }

    // @Test // TODO [#579] re-enable this test when fixing this bug
    public void testUnaliasedSubqueryProjections() throws Exception {
        new SelectTests(this).testUnaliasedSubqueryProjections();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.