Home | History | Annotate | Download | only in io

Lines Matching refs:bis

34     ByteArrayInputStream bis;
80 bis = new ByteArrayInputStream(bos.toByteArray());
83 bis.available() == fileString.length());
85 bis.read(wbytes, 0, fileString.length());
97 bis = new ByteArrayInputStream(bos.toByteArray());
100 bis.available() == fileString.length());
102 bis.read(wbytes, 0, fileString.length());
114 bis = new ByteArrayInputStream(bos.toByteArray());
116 assertEquals("Byte not written after flush", 1, bis.available());
118 bis.read(wbytes, 0, 1);
130 if (bis != null)
131 bis.close();