use of common.datastore.SimpleOperation in project solution-finder by knewjade.
the class OperationComparatorTest method compareDiffY.
@Test
void compareDiffY() throws Exception {
SimpleOperation operation1 = new SimpleOperation(Piece.I, Rotate.Spawn, 0, 1);
Operation operation2 = createNewOperation(Piece.I, Rotate.Spawn, 0, 4);
// assert is not 0 & sign reversed
OperationComparator comparator = new OperationComparator();
assertThat(comparator.compare(operation1, operation2) * comparator.compare(operation2, operation1)).isLessThan(0);
}
Aggregations