public void getAll() {
mockServer.expect(requestTo("https://api.foursquare.com/v2/settings/all?oauth_token=ACCESS_TOKEN&v=20110609"))
.andExpect(method(GET))
.andRespond(withResponse(new ClassPathResource("testdata/allsettings.json", getClass()), responseHeaders));
AllSettings settings = foursquare.settingOperations().getAll();
assertTrue(settings.receivePings());
mockServer.verify();
}