OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:failSource
(Results
1 - 4
of
4
) sorted by null
/external/guava/guava-tests/test/com/google/common/io/
ByteSinkTest.java
83
TestByteSource
failSource
= new TestByteSource(new byte[10], option);
86
failSource
.copyTo(okSink);
CharSinkTest.java
95
TestCharSource
failSource
= new TestCharSource(STRING, option);
98
failSource
.copyTo(okSink);
ByteSourceTest.java
261
TestByteSource
failSource
= new TestByteSource(bytes, READ_THROWS);
263
failSource
.copyTo(new TestByteSink());
267
assertTrue(
failSource
.wasStreamClosed());
CharSourceTest.java
186
TestCharSource
failSource
= new TestCharSource(STRING, READ_THROWS);
188
failSource
.copyTo(new TestCharSink());
192
assertTrue(
failSource
.wasStreamClosed());
Completed in 47 milliseconds