(Object... elements)
| 218 | } |
| 219 | |
| 220 | private JSONArray array(Object... elements) { |
| 221 | return new JSONArray(Arrays.asList(elements)); |
| 222 | } |
| 223 | |
| 224 | private JSONObject object(Object... keyValuePairs) throws JSONException { |
| 225 | JSONObject result = new JSONObject(); |
no test coverage detected