Package com.google.appengine.datanucleus.test.jdo

Examples of com.google.appengine.datanucleus.test.jdo.EmbeddedParentPC


    Entity e = ds.get(parent.getKey());
    assertTrue(e.hasProperty("key"));
  }

  public void testEmbeddingPCWithIdField() {
    EmbeddedParentPC pi = new EmbeddedParentPC();
    pi.setChild(new EmbeddedChildPC(1, "Hi"));

    // Failed on GAE v1.x
    pm.currentTransaction().begin();
    pm.makePersistent(pi);
    pm.currentTransaction().commit();
View Full Code Here

TOP

Related Classes of com.google.appengine.datanucleus.test.jdo.EmbeddedParentPC

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.