result = query.execute(dept1);
checkQueryResultWithoutOrder(ASSERTION_FAILED, result, expected);
// type-import-on-demand twice
query = pm.newQuery(Employee.class);
query.declareImports("import org.apache.jdo.tck.pc.company.*; import org.apache.jdo.tck.pc.company.*");
query.declareParameters("Department d");
query.setFilter("department == d");
result = query.execute(dept1);
checkQueryResultWithoutOrder(ASSERTION_FAILED, result, expected);