HomeSort by relevance Sort by last modified time
    Searched refs:returnInBody (Results 1 - 2 of 2) sorted by null

  /external/jacoco/org.jacoco.core.test/src-java7/org/jacoco/core/test/filter/targets/
TryWithResources.java 70 private static Object returnInBody() throws IOException {
71 try ( // $line-returnInBody.try$
72 Closeable r = new Resource() // $line-returnInBody.open$
74 return read(r); // $line-returnInBody.return$
75 } // $line-returnInBody.close$
153 returnInBody();
  /external/jacoco/org.jacoco.core.test/src-java7/org/jacoco/core/test/filter/
TryWithResourcesTest.java 70 * {@link TryWithResources#returnInBody()}
73 public void returnInBody() {
75 assertLine("returnInBody.try", ICounter.FULLY_COVERED);
76 assertLine("returnInBody.open", ICounter.FULLY_COVERED);
87 assertLine("returnInBody.close", ICounter.FULLY_COVERED, 0, 0);
89 assertLine("returnInBody.close", ICounter.EMPTY);
92 assertLine("returnInBody.close", ICounter.EMPTY);
95 assertLine("returnInBody.return", ICounter.FULLY_COVERED);

Completed in 62 milliseconds