final PullComments comments = comments();
comments.post("comment 1", "commit 1", "/commit1", 1);
comments.post("comment 2", "commit 2", "/commit2", 2);
MatcherAssert.assertThat(
comments.iterate(
comments.pull().number(),
Collections.<String, String>emptyMap()
),
Matchers.<PullComment>iterableWithSize(2)
);
}