Method
printLines
(final String what, final InputStream in)
Source from the content-addressed store, hash-verified
| 2340 | } |
| 2341 | |
| 2342 | private static void printLines(final String what, final InputStream in) |
| 2343 | throws Exception { |
| 2344 | final BufferedReader r = new BufferedReader(new InputStreamReader(in)); |
| 2345 | String line; |
| 2346 | while ((line = r.readLine()) != null) { |
| 2347 | LOG.info('(' + what + ") " + line); |
| 2348 | } |
| 2349 | } |
| 2350 | |
| 2351 | |
| 2352 | private static final class JunitListener extends RunListener { |
Tested by
no test coverage detected