Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testIllegalArguments (0.07 seconds)

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

        // reset to the mark and then read the rest
        reader.reset();
        assertThat(readFully(reader)).isEqualTo(string.substring(5));
        assertFullyRead(reader);
      }
    
      public void testIllegalArguments() throws IOException {
        CharSequenceReader reader = new CharSequenceReader("12345");
    
        char[] buf = new char[10];
        assertThrows(IndexOutOfBoundsException.class, () -> reader.read(buf, 0, 11));
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/io/CharSequenceReaderTest.java

        // reset to the mark and then read the rest
        reader.reset();
        assertThat(readFully(reader)).isEqualTo(string.substring(5));
        assertFullyRead(reader);
      }
    
      public void testIllegalArguments() throws IOException {
        CharSequenceReader reader = new CharSequenceReader("12345");
    
        char[] buf = new char[10];
        assertThrows(IndexOutOfBoundsException.class, () -> reader.read(buf, 0, 11));
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 6.7K bytes
    - Click Count (0)
Back to Top