* MkComments can iterate comments.
* @throws Exception If some problem inside
*/
@Test
public void iteratesComments() throws Exception {
final Comments comments = this.comments();
comments.post("hello, dude!");
comments.post("hello again");
MatcherAssert.assertThat(
comments.iterate(),
Matchers.<Comment>iterableWithSize(2)
);
}