Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testWriteChars (0.05 seconds)

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

        /* Read in various values NORMALLY */
        byte[] b = new byte[3];
        in.readFully(b);
        byte[] expected = {(byte) 0xAA, (byte) 0xBB, (byte) 0xCC};
        assertEquals(expected, b);
      }
    
      public void testWriteChars() throws IOException {
    
        /* Write out various test values in LITTLE ENDIAN FORMAT */
        out.writeChars("r\u00C9sum\u00C9");
    
        byte[] data = baos.toByteArray();
    
        /* Setup input streams */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java

        /* Read in various values NORMALLY */
        byte[] b = new byte[3];
        in.readFully(b);
        byte[] expected = {(byte) 0xAA, (byte) 0xBB, (byte) 0xCC};
        assertEquals(expected, b);
      }
    
      public void testWriteChars() throws IOException {
    
        /* Write out various test values in LITTLE ENDIAN FORMAT */
        out.writeChars("r\u00C9sum\u00C9");
    
        byte[] data = baos.toByteArray();
    
        /* Setup input streams */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 4.9K bytes
    - Click Count (0)
Back to Top