Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testBase32Offset (0.21 sec)

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

        assertThat(ignoreCase).isSameInstanceAs(base32().ignoreCase());
        testDecodes(ignoreCase, "MZXW6YTBOI======", "foobar");
        testDecodes(ignoreCase, "mzxw6ytboi======", "foobar");
      }
    
      public void testBase32Offset() {
        testEncodesWithOffset(base32(), "foobar", 0, 6, "MZXW6YTBOI======");
        testEncodesWithOffset(base32(), "foobar", 1, 5, "N5XWEYLS");
        testEncodesWithOffset(base32(), "foobar", 2, 3, "N5RGC===");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 16:27:30 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/BaseEncodingTest.java

        assertThat(ignoreCase).isSameInstanceAs(base32().ignoreCase());
        testDecodes(ignoreCase, "MZXW6YTBOI======", "foobar");
        testDecodes(ignoreCase, "mzxw6ytboi======", "foobar");
      }
    
      public void testBase32Offset() {
        testEncodesWithOffset(base32(), "foobar", 0, 6, "MZXW6YTBOI======");
        testEncodesWithOffset(base32(), "foobar", 1, 5, "N5XWEYLS");
        testEncodesWithOffset(base32(), "foobar", 2, 3, "N5RGC===");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 16:27:30 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top