()
| 22 | public class ClientTest extends AsanaTest |
| 23 | { |
| 24 | @Test |
| 25 | public void testClientGet() throws IOException |
| 26 | { |
| 27 | dispatcher.registerResponse("GET", "http://app/users/me").code(200).content("{ \"data\": { \"name\": \"me\" }}"); |
| 28 | assertEquals("me", client.users.me().execute().name); |
| 29 | } |
| 30 | |
| 31 | @Test |
| 32 | public void testClientGetWithNonEnglishCharacters() throws IOException |
nothing calls this directly
no test coverage detected