try {
em = emf.createEntityManager();
assertNotNull(em);
getLog().trace("setup() - creating 1 SimpleEntity");
em.getTransaction().begin();
SimpleEntity se = new SimpleEntity("entity","1");
em.persist(se);
em.getTransaction().commit();
} catch (Exception e) {
fail("setup() - Unexpected Exception - " + e);
} finally {