Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testNewDataInput_readFullyAndThenSome (0.21 sec)

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

        ByteArrayDataInput in = ByteStreams.newDataInput(bytes);
        byte[] actual = new byte[bytes.length];
        in.readFully(actual);
        assertThat(actual).isEqualTo(bytes);
      }
    
      public void testNewDataInput_readFullyAndThenSome() {
        ByteArrayDataInput in = ByteStreams.newDataInput(bytes);
        byte[] actual = new byte[bytes.length * 2];
        IllegalStateException ex =
    Registered: 2024-06-12 16:38
    - Last Modified: 2023-09-06 17:04
    - 21.9K bytes
    - Viewed (0)
Back to top