Examples of IdClassEntity


Examples of org.apache.cayenne.jpa.itest.ch2.entity.IdClassEntity

        assertEquals(o1.idField(), getDbHelper().getInt("FieldPersistenceEntity", "id"));
    }

    // TODO: andrus 8/10/2006 - fails
    public void _testIdClassPk() throws Exception {
        IdClassEntity o1 = new IdClassEntity();
        o1.setProperty1("p1");
        getEntityManager().persist(o1);
        getEntityManager().getTransaction().commit();

        assertEquals("p1", getDbHelper().getObject("IdClassEntity", "property1"));
    }
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.