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

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


  public void testRun() {
    Issue167Parent p = new Issue167Parent(UUID.randomUUID().toString());

    EntityManager em = emf.createEntityManager();
    try {
      p.getChildren().add(new Issue167Child("1"));
      p.getChildren().add(new Issue167Child("2"));
      p.getChildren().add(new Issue167Child("3"));

      em.getTransaction().begin();
      em.persist(p);
      em.getTransaction().commit();
View Full Code Here

TOP

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

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.