Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testPadEnd_null (0.08 sec)

  1. android/guava-tests/test/com/google/common/base/StringsTest.java

        assertEquals("xx-", Strings.padEnd("xx", 3, '-'));
      }
    
      public void testPadEnd_negativeMinLength() {
        assertSame("x", Strings.padEnd("x", -1, '-'));
      }
    
      public void testPadEnd_null() {
        assertThrows(NullPointerException.class, () -> Strings.padEnd(null, 5, '0'));
      }
    
      @SuppressWarnings("InlineMeInliner") // test of method that doesn't just delegate
      public void testRepeat() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 27 17:53:41 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top