Package com.mobixess.jodb.tests

Examples of com.mobixess.jodb.tests.QueryTests


    public void testBaseAddRemoveSE() throws Exception {
        new SimpleAddTestSE().main(null);
    }
   
    public void testQuery() throws Exception{
        new QueryTests().main(null);
    }
View Full Code Here


    /**
     * @param args
     * @throws IOException
     */
    public static void main(String[] args) throws Exception {
        QueryTests queryTests = new ServerClientQueryTest();
        queryTests.queryByExample(true);
        queryTests.sortingTest();
        queryTests.queryByExample(false);
        queryTests.stringFieldQueryCompare(true);
        queryTests.stringFieldQueryCompare(false);
        queryTests.primitiveFieldsQuery(true);
        queryTests.primitiveFieldsQuery(false);
        queryTests.classTypeConstraints(true);
        queryTests.classTypeConstraints(false);
        //queryTests.evaluationQueryTest(true);
        //queryTests.evaluationQueryTest(false);
        System.out.println("Test finished");
    }
View Full Code Here

TOP

Related Classes of com.mobixess.jodb.tests.QueryTests

Copyright © 2018 www.massapicom. 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.