assertEquals(s1, s2);
}
public void testReorderVeryLargeWithOneChange() {
fillWithRandom(veryLargeSet, 100000);
XorAccumulator s1 = computeSha1OfSet(veryLargeSet);
Collections.shuffle(veryLargeSet);
perturbZeroElement(veryLargeSet);
XorAccumulator s2 = computeSha1OfSet(veryLargeSet);
assertFalse(s1.equals(s2));
}