// Uninstall this since the test needs to update!
DatastoreServiceInterceptor.uninstall();
// force the class metadata to load - we've seen occasional problems
// where the class can't be resolved for a query if we don't reference it first.
InTheHouseJPA pojo = new InTheHouseJPA();
beginTxn();
em.persist(pojo);
commitTxn();
assertNotNull(em.createQuery("select b from InTheHouseJPA b").getResultList().get(0));