Searched defs:testRequestMethod (Results 1 - 3 of 3) sorted by relevance

/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
H A DResponseCacheTest.java667 testRequestMethod("OPTIONS", false);
671 testRequestMethod("GET", true);
676 testRequestMethod("HEAD", false);
681 testRequestMethod("POST", false);
685 testRequestMethod("PUT", false);
689 testRequestMethod("DELETE", false);
693 testRequestMethod("TRACE", false);
696 private void testRequestMethod(String requestMethod, boolean expectCached) throws Exception { method in class:ResponseCacheTest
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DCacheTest.java704 testRequestMethod("OPTIONS", false);
708 testRequestMethod("GET", true);
713 testRequestMethod("HEAD", false);
718 testRequestMethod("POST", false);
722 testRequestMethod("PUT", false);
726 testRequestMethod("DELETE", false);
730 testRequestMethod("TRACE", false);
733 private void testRequestMethod(String requestMethod, boolean expectCached) throws Exception { method in class:CacheTest
/external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/
H A DUrlConnectionCacheTest.java594 testRequestMethod("OPTIONS", false);
598 testRequestMethod("GET", true);
603 testRequestMethod("HEAD", false);
608 testRequestMethod("POST", false);
612 testRequestMethod("PUT", false);
616 testRequestMethod("DELETE", false);
620 testRequestMethod("TRACE", false);
623 private void testRequestMethod(String requestMethod, boolean expectCached) throws Exception { method in class:UrlConnectionCacheTest

Completed in 793 milliseconds