()
| 15 | public class RateLimitTest extends AsanaTest |
| 16 | { |
| 17 | @Test |
| 18 | public void testClientGet() throws IOException |
| 19 | { |
| 20 | dispatcher.registerResponse("GET", "http://app/users/me").code(200).content("{ \"data\": { \"name\": \"me\" }}"); |
| 21 | |
| 22 | assertEquals("me", client.users.me().execute().name); |
| 23 | } |
| 24 | |
| 25 | @Test |
| 26 | public void testRateLimiting() throws IOException |
nothing calls this directly
no test coverage detected