Package com.google.appengine.datanucleus.bugs.test

Examples of com.google.appengine.datanucleus.bugs.test.Issue228Child


  }

  public void testManyToOneBidir() {
    Issue228Parent parent = new Issue228Parent();
    parent.setName("Owner name");
    Issue228Child child = new Issue228Child();
    child.setParent(parent);
    parent.getChildren().add(child);
    child.setName("Child name");

    beginTxn();
    NucleusLogger.GENERAL.info(">> pm.makePersistent(child)");
    pm.makePersistent(child);
    commitTxn();
View Full Code Here

TOP

Related Classes of com.google.appengine.datanucleus.bugs.test.Issue228Child

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.