Package ch.inftec.ju.db.data.entity

Examples of ch.inftec.ju.db.data.entity.CustomObject


  @Test
  public void dbConnection() {
    Assert.assertEquals("Derby Test DB", this.connectionInfo.getName());
    Assert.assertNull(this.connectionInfo.getSchema());
   
    CustomObject o = new CustomObject();
    this.entityManager.persist(o);
    Assert.assertNotNull(o.getId());
  }
View Full Code Here

TOP

Related Classes of ch.inftec.ju.db.data.entity.CustomObject

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.