tck/src/main/java/org/apache/jdo/tck/query/jdoql/operators/ConditionalAND.java [88:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void testPositive2() {
    if (debug) logger.debug("\nExecuting test ConditionalAND() ...");

    PersistenceManager pm = getPMF().getPersistenceManager();
    Transaction tx = pm.currentTransaction();
    try {
      tx.begin();
      List<PrimitiveTypes> allOddInstances =
          pm.newQuery(PrimitiveTypes.class, "booleanNull").executeList();

      // case Boolean && Boolean
      runSimplePrimitiveTypesQuery(
          "booleanNull && booleanNull", pm, allOddInstances, ASSERTION_FAILED);

      tx.commit();
    } finally {
      cleanupPM(pm);
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tck/src/main/java/org/apache/jdo/tck/query/jdoql/operators/BooleanLogicalAND.java [88:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void testPositive2() {
    if (debug) logger.debug("\nExecuting positive test BooleanLogicalAND() ...");

    PersistenceManager pm = getPMF().getPersistenceManager();
    Transaction tx = pm.currentTransaction();
    try {
      tx.begin();
      List<PrimitiveTypes> allOddInstances =
          pm.newQuery(PrimitiveTypes.class, "booleanNull").executeList();

      // case Boolean & Boolean
      runSimplePrimitiveTypesQuery(
          "booleanNull & booleanNull", pm, allOddInstances, ASSERTION_FAILED);

      tx.commit();
    } finally {
      cleanupPM(pm);
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



