MCPcopy Index your code
hub / github.com/OpenFeign/feign / next

Method next

core/src/test/java/feign/FeignBuilderTest.java:359–370  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 =

Callers

nothing calls this directly

Calls 5

toStringMethod · 0.95
ensureClosedMethod · 0.95
asReaderMethod · 0.65
bodyMethod · 0.65
getMessageMethod · 0.45

Tested by

no test coverage detected