*/
@Test
public void canCompareInstances() throws Exception {
final Repo repo = repo();
final Issue issue = repo.issues().create("title", "body");
final RtComment less = new RtComment(new FakeRequest(), issue, 1);
final RtComment greater = new RtComment(new FakeRequest(), issue, 2);
MatcherAssert.assertThat(
less.compareTo(greater), Matchers.lessThan(0)
);
MatcherAssert.assertThat(
greater.compareTo(less), Matchers.greaterThan(0)