Home
last modified time | relevance | path

Searched refs:runSuppressionFailureTest (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava-tests/test/com/google/common/io/
DCharSourceTest.java289 int suppressed = runSuppressionFailureTest(in, newNormalCharSink()); in testCopyExceptions()
292 suppressed = runSuppressionFailureTest(in, BROKEN_CLOSE_SINK); in testCopyExceptions()
297 int suppressed = runSuppressionFailureTest(newNormalCharSource(), out); in testCopyExceptions()
300 suppressed = runSuppressionFailureTest(BROKEN_CLOSE_SOURCE, out); in testCopyExceptions()
306 int suppressed = runSuppressionFailureTest(in, out); in testCopyExceptions()
330 private static int runSuppressionFailureTest(CharSource in, CharSink out) { in runSuppressionFailureTest() method in CharSourceTest
DByteSourceTest.java365 int suppressed = runSuppressionFailureTest(in, newNormalByteSink()); in testCopyExceptions()
368 suppressed = runSuppressionFailureTest(in, BROKEN_CLOSE_SINK); in testCopyExceptions()
373 int suppressed = runSuppressionFailureTest(newNormalByteSource(), out); in testCopyExceptions()
376 suppressed = runSuppressionFailureTest(BROKEN_CLOSE_SOURCE, out); in testCopyExceptions()
382 int suppressed = runSuppressionFailureTest(in, out); in testCopyExceptions()
406 private static int runSuppressionFailureTest(ByteSource in, ByteSink out) { in runSuppressionFailureTest() method in ByteSourceTest