(HttpMethod method, String url, InputStream responseBody)
| 135 | } |
| 136 | |
| 137 | public MockClient ok(HttpMethod method, String url, InputStream responseBody) throws IOException { |
| 138 | return ok(RequestKey.builder(method, url).build(), responseBody); |
| 139 | } |
| 140 | |
| 141 | public MockClient ok(HttpMethod method, String url, String responseBody) { |
| 142 | return ok(RequestKey.builder(method, url).build(), responseBody); |