()
| 185 | } |
| 186 | |
| 187 | public JSONObject getJSON() throws IOException { |
| 188 | ignoreContentType(); |
| 189 | String jsonString = response().body(); |
| 190 | return new JSONObject(jsonString); |
| 191 | } |
| 192 | |
| 193 | public JSONArray getJSONArray() throws IOException { |
| 194 | ignoreContentType(); |
nothing calls this directly
no test coverage detected