()
| 71 | } |
| 72 | |
| 73 | @Test |
| 74 | public void testClientPost() throws IOException |
| 75 | { |
| 76 | dispatcher.registerResponse("POST", "http://app/tasks").code(201).content("{ \"data\": { \"gid\": \"1\" }}"); |
| 77 | |
| 78 | assertEquals("1", client.tasks.create().execute().gid); |
| 79 | } |
| 80 | |
| 81 | @Test |
| 82 | public void testClientPut() throws IOException |
nothing calls this directly
no test coverage detected