*/
public void testMakeDirtyNotPersistenceCapable() {
pm = getPM();
Transaction tx = pm.currentTransaction();
tx.begin();
Point p1 = new Point(1,2);
JDOHelper.makeDirty(p1,"x");
boolean dirty = JDOHelper.isDirty(p1);
tx.commit();
if (dirty)
fail(ASSERTION_FAILED,