p.put("movieDatabaseUnmanaged.JtaManaged", "false");
Context context = new InitialContext(p);
//X Movies movies = (Movies) context.lookup("MoviesLocal");
JPAService jpaService = new JPAServiceOpenEJBImpl();
EntityManagerFactory emf = jpaService.getPersistenceUnit( "TestUnit" );
Assert.assertNotNull( emf );
EntityManager em = jpaService.getPersistenceContext( "TestUnit", null );
Assert.assertNotNull( em );
}