Searched refs:getFakeHttpLayer (Results 1 – 5 of 5) sorted by relevance
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowDefaultRequestDirector.java | 96 Robolectric.getFakeHttpLayer().interceptHttpRequests(true); in __constructor__() 138 int requestCount = Robolectric.getFakeHttpLayer().getSentHttpRequestInfos().size(); in getLatestSentHttpRequestInfo() 139 return Robolectric.getFakeHttpLayer().getSentHttpRequestInfo(requestCount - 1); in getLatestSentHttpRequestInfo() 143 return Robolectric.getFakeHttpLayer().getSentHttpRequestInfo(index); in getSentHttpRequestInfo() 148 if (Robolectric.getFakeHttpLayer().isInterceptingHttpRequests()) { in execute() 149 …return Robolectric.getFakeHttpLayer().emulateRequest(httpHost, httpRequest, httpContext, realObjec… in execute()
|
D | ShadowApplication.java | 476 public FakeHttpLayer getFakeHttpLayer() { in getFakeHttpLayer() method in ShadowApplication
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/ |
D | Robolectric.java | 1076 getFakeHttpLayer().addPendingHttpResponse(statusCode, responseBody, headers); in addPendingHttpResponse() 1089 getFakeHttpLayer().addPendingHttpResponse(statusCode, responseBody, contentType); in addPendingHttpResponseWithContentType() 1098 getFakeHttpLayer().addPendingHttpResponse(httpResponse); in addPendingHttpResponse() 1107 getFakeHttpLayer().addPendingHttpResponse(httpResponseGenerator); in addPendingHttpResponse() 1130 return getShadowApplication().getFakeHttpLayer().hasRequestInfos(); in httpRequestWasMade() 1134 …return getShadowApplication().getFakeHttpLayer().hasRequestMatchingRule(new FakeHttpLayer.UriReque… in httpRequestWasMade() 1155 getFakeHttpLayer().addHttpResponseRule(method, uri, response); in addHttpResponseRule() 1165 getFakeHttpLayer().addHttpResponseRule(uri, response); in addHttpResponseRule() 1175 getFakeHttpLayer().addHttpResponseRule(uri, response); in addHttpResponseRule() 1185 getFakeHttpLayer().addHttpResponseRule(requestMatcher, response); in addHttpResponseRule() [all …]
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | DefaultRequestDirectorTest.java | 44 FakeHttpLayer fakeHttpLayer = Robolectric.getFakeHttpLayer(); in setUp_EnsureStaticStateIsReset() 345 Robolectric.getFakeHttpLayer().interceptHttpRequests(false); in shouldSupportRealHttpRequests()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/ |
D | FakeHttpLayer.java | 30 … List<HttpRequestInfo> requestInfos = Robolectric.getFakeHttpLayer().getSentHttpRequestInfos(); in getLastSentHttpRequestInfo()
|