X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Fit%2Fhibernate-lob-converter-bug%2Fsrc%2Ftest%2Fjava%2Fio%2Fblep%2FLobConverterTest.java;fp=src%2Fit%2Fhibernate-lob-converter-bug%2Fsrc%2Ftest%2Fjava%2Fio%2Fblep%2FLobConverterTest.java;h=0000000000000000000000000000000000000000;hb=653ab8054c9232471c3c1192d5074010f378a067;hp=b08b858440889c7c6b27bdf128c5c8f5d7864097;hpb=dc8cc2c0dc557f62e21607eda7835e658eca19fd;p=hibernate-maven-plugin diff --git a/src/it/hibernate-lob-converter-bug/src/test/java/io/blep/LobConverterTest.java b/src/it/hibernate-lob-converter-bug/src/test/java/io/blep/LobConverterTest.java deleted file mode 100644 index b08b8584..00000000 --- a/src/it/hibernate-lob-converter-bug/src/test/java/io/blep/LobConverterTest.java +++ /dev/null @@ -1,22 +0,0 @@ -package io.blep; - -import org.junit.Test; - -import javax.persistence.*; - -/** - * @author blep - */ -public class LobConverterTest { - - @Test - public void testName() throws Exception { - final EntityManagerFactory emf = Persistence.createEntityManagerFactory("samplePU"); - - final EntityManager em = emf.createEntityManager(); - - em.getTransaction().begin(); - em.persist(new MyEntity()); - em.getTransaction().commit(); - } -}