Package org.apache.openjpa.util

Examples of org.apache.openjpa.util.DelayedPriorityQueueProxy


        em.close();
       
        // assert there was no select on the employee table
        assertNoneSQLAnyOrder("SELECT .* DC_EMPLOYEE .*");
        assertTrue(emps instanceof DelayedPriorityQueueProxy);
        DelayedPriorityQueueProxy dep = (DelayedPriorityQueueProxy)emps;
        dep.setDirectAccess(true);
        assertEquals(0, dep.size());
        dep.setDirectAccess(false);
        assertNotNull(emps);
        // call contains and assert a select from the employee table
        // occurred that the expected entities are returned.
        resetSQL();
        assertTrue(emps.contains(e));
View Full Code Here

TOP

Related Classes of org.apache.openjpa.util.DelayedPriorityQueueProxy

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.