Query query = pm.newQuery(PCPoint.class, resultCln, "x == 1");
Object results = query.execute();
// check query result
List expected = new ArrayList();
Object p2 = new PCPoint(1, 1);
expected.add(p2);
expected = getFromInserted(expected);
printOutput(results, expected);
checkQueryResultWithoutOrder(ASSERTION_FAILED, results, expected);
if (debug)