* @throws Exception If some problem inside
*/
@Test
public void cachesJsonData() throws Exception {
final Comment origin = Mockito.mock(Comment.class);
final Request request = new FakeRequest()
.withBody("[{\"body\": \"hey you\"}]");
final Comment comment = new Bulk<Comment>(
new RtPagination<Comment>(
request,
new RtPagination.Mapping<Comment, JsonObject>() {