()
| 79 | } |
| 80 | |
| 81 | @Test |
| 82 | public void testClientPut() throws IOException |
| 83 | { |
| 84 | dispatcher.registerResponse("PUT", "http://app/tasks/1").code(200).content("{ \"data\": { \"gid\": \"1\" }}"); |
| 85 | |
| 86 | assertEquals("1", client.tasks.update("1").execute().gid); |
| 87 | } |
| 88 | |
| 89 | @Test |
| 90 | public void testClientDelete() throws IOException |
nothing calls this directly
no test coverage detected