mockServer
.expect(requestTo("https://www.googleapis.com/plus/v1/people/me/moments/vault"))
.andExpect(method(GET))
.andRespond(
withSuccess(jsonResource("moments"), APPLICATION_JSON));
MomentsPage page = google.plusOperations().getMoments(null);
assertNotNull(page);
assertNull(page.getNextPageToken());
assertEquals(4, page.getItems().size());
}