if ( TestConfig.verbose() )
System.err.println(tpls[i]);
}
Comparator cmp = DefaultLiteralComparator.getInstance();
for ( int i=0; i<tpls.length-1; ++i ) {
Tuple t1 = tpls[i], t2 = tpls[i+1];
int c = cmp.compare(t1.get(h1), t2.get(h1));
assertTrue(c<=0);
if ( c == 0 ) {
c = cmp.compare(t1.get(h2), t2.get(h2));
assertTrue(c>=0);
}
}
}