tck/src/main/java/org/apache/jdo/tck/api/jdohelper/IsPersistentForTransient.java [50:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void testIsPersistentForTransient() {
    pm = getPM();
    Transaction tx = pm.currentTransaction();
    tx.begin();
    PCPoint p1 = new PCPoint(1, 3);
    boolean persistent = JDOHelper.isPersistent(p1);
    tx.commit();
    if (persistent)
      fail(ASSERTION_FAILED, "JDOHelper.isPersistent returns true for transient instance.");
    pm.close();
    pm = null;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tck/src/main/java/org/apache/jdo/tck/api/jdohelper/IsPersistentFalse.java [48:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void testIsPersistentFalse() {
    pm = getPM();
    Transaction tx = pm.currentTransaction();
    tx.begin();
    PCPoint p1 = new PCPoint(1, 3);
    boolean persistent = JDOHelper.isPersistent(p1);
    tx.commit();
    if (persistent)
      fail(ASSERTION_FAILED, "JDOHelper.isPersistent returns true for transient instance.");
    pm.close();
    pm = null;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



