Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testRead_withProcessor (0.15 seconds)

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

      }
    
      public void testRead_toArray() throws IOException {
        assertArrayEquals(bytes, source.read());
        assertTrue(source.wasStreamOpened() && source.wasStreamClosed());
      }
    
      public void testRead_withProcessor() throws IOException {
        byte[] processedBytes = new byte[bytes.length];
        ByteProcessor<byte[]> processor =
            new ByteProcessor<byte[]>() {
              int pos;
    
              @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

      }
    
      public void testRead_toArray() throws IOException {
        assertArrayEquals(bytes, source.read());
        assertTrue(source.wasStreamOpened() && source.wasStreamClosed());
      }
    
      public void testRead_withProcessor() throws IOException {
        byte[] processedBytes = new byte[bytes.length];
        ByteProcessor<byte[]> processor =
            new ByteProcessor<byte[]>() {
              int pos;
    
              @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 15.6K bytes
    - Click Count (0)
Back to Top