()
| 19 | } |
| 20 | |
| 21 | @Test |
| 22 | public void testRequestHeaders() throws IOException |
| 23 | { |
| 24 | dispatcher.registerResponse("GET", "http://app/users/me").code(200).content("{}"); |
| 25 | client.users.me().header("key", "value").execute(); |
| 26 | |
| 27 | assertEquals(Collections.singletonList("value"), dispatcher.calls.get(0).headers.get("key")); |
| 28 | } |
| 29 | |
| 30 | @Test |
| 31 | public void testOverridingHeaders() throws IOException |