mockServer
.expect(requestTo("https://www.googleapis.com/tasks/v1/users/@me/lists"))
.andExpect(method(GET))
.andRespond(
withSuccess(jsonResource("tasklists"), APPLICATION_JSON));
TaskListsPage page = google.taskOperations().getTaskLists(null);
assertTaskListsPage(page);
}