@Test
public void testSortOrder() throws Exception {
control.replay();
LogPosition a = new LogPosition(makePosition(5));
LogPosition b = new LogPosition(makePosition(10));
LogPosition c = new LogPosition(makePosition(3));
assertEquals(
ImmutableList.of(c, a, b),
ImmutableList.copyOf(ImmutableSortedSet.of(a, b, c))
);
}