*/
public void testGetPersistenceManagerNotPersistenceCapable() {
pm = getPM();
Transaction tx = pm.currentTransaction();
tx.begin();
Point p1 = new Point(1,3);
tx.commit();
PersistenceManager pm1 = JDOHelper.getPersistenceManager(p1);
if (pm1 != null)
fail(ASSERTION_FAILED,
"JDOHelper.getPersistenceManager called for instance of non-pc class returned non-null pm " + pm1);