Beispiel #1
0
  @Test
  public void testCreate() {

    Company cm = new Company();
    cm.setName("Windy");
    cm.setProductName("Root");
    cm.setProductType("Beer");

    tx.begin();
    em.persist(cm);
    tx.commit();

    assertNotNull(cm.getId());
  }