Fixed the akquisition of a database-connection, if one is needed
[hibernate-maven-plugin] / src / it / hibernate-lob-converter-bug / src / test / java / io / blep / LobConverterTest.java
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 (file)
index b08b858..0000000
+++ /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();
-    }
-}