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