Package com.adaptiweb.tools.entity

Examples of com.adaptiweb.tools.entity.Person


    DbTestConfig.create(this).execute();
  }

  @DbTestExecution(order=1)
  public void initDatabase(EntityManager em) {
    Person entity = new Person();
    entity.setName("Eddie Vedder");
    em.persist(entity);
  }
View Full Code Here


    em.persist(entity);
  }
 
  @DbTestExecution(order=2, useTransaction=false)
  public void notInitDatabase(EntityManager em) {
    Person entity = new Person();
    entity.setName("Karel Kryl");
    em.persist(entity);
  }
View Full Code Here

TOP

Related Classes of com.adaptiweb.tools.entity.Person

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.