Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testAppendString (0.2 sec)

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

        Files.write(data, temp);
        assertTrue(Arrays.equals(data, Files.toByteArray(temp)));
    
        assertThrows(NullPointerException.class, () -> Files.write(null, temp));
      }
    
      public void testAppendString() throws IOException {
        File temp = createTempFile();
        Files.append(I18N, temp, UTF_16LE);
        assertEquals(I18N, Files.toString(temp, UTF_16LE));
        Files.append(I18N, temp, UTF_16LE);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/FilesTest.java

        Files.write(data, temp);
        assertTrue(Arrays.equals(data, Files.toByteArray(temp)));
    
        assertThrows(NullPointerException.class, () -> Files.write(null, temp));
      }
    
      public void testAppendString() throws IOException {
        File temp = createTempFile();
        Files.append(I18N, temp, UTF_16LE);
        assertEquals(I18N, Files.toString(temp, UTF_16LE));
        Files.append(I18N, temp, UTF_16LE);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top