Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testReadFully (0.06 seconds)

  1. android/guava-tests/test/com/google/common/io/ByteStreamsTest.java

        }
        byte[] actual = out.toByteArray();
        for (int i = 0; i < 500 * chunkSize; i += chunkSize) {
          assertThat(Arrays.copyOfRange(actual, i, i + chunkSize)).isEqualTo(dummyData);
        }
      }
    
      public void testReadFully() throws IOException {
        byte[] b = new byte[10];
    
        assertThrows(
            NullPointerException.class, () -> ByteStreams.readFully(newTestStream(10), null, 0, 10));
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 22K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/io/ByteStreamsTest.java

        }
        byte[] actual = out.toByteArray();
        for (int i = 0; i < 500 * chunkSize; i += chunkSize) {
          assertThat(Arrays.copyOfRange(actual, i, i + chunkSize)).isEqualTo(dummyData);
        }
      }
    
      public void testReadFully() throws IOException {
        byte[] b = new byte[10];
    
        assertThrows(
            NullPointerException.class, () -> ByteStreams.readFully(newTestStream(10), null, 0, 10));
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 22K bytes
    - Click Count (0)
Back to Top