assertEquals("https://graph.facebook.com/v2.0/me?access_token=12345&format=json", respstring);
}
@Test
public void version21Test() {
FakeWebRequestor wr = new FakeWebRequestor();
DefaultFacebookClient client = new DefaultFacebookClient("12345", wr, new DefaultJsonMapper(), Version.VERSION_2_1);
String respstring = client.fetchObject("/me", String.class);
assertEquals("https://graph.facebook.com/v2.1/me?access_token=12345&format=json", respstring);
}