()
| 357 | } |
| 358 | |
| 359 | @Override |
| 360 | public Object next() { |
| 361 | try { |
| 362 | return Util.toString(response.body().asReader(Util.UTF_8)); |
| 363 | } catch (IOException e) { |
| 364 | fail("", e.getMessage()); |
| 365 | return null; |
| 366 | } finally { |
| 367 | Util.ensureClosed(response); |
| 368 | called = true; |
| 369 | } |
| 370 | } |
| 371 | }; |
| 372 | |
| 373 | TestInterface api = |
nothing calls this directly
no test coverage detected