Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testApply (0.03 sec)

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

        assertEquals(converter, converter.reverse().reverse());
      }
    
      // We need to test that apply() does in fact behave like convert().
      @SuppressWarnings("InlineMeInliner")
      public void testApply() {
        assertEquals(LONG_VAL, STR_TO_LONG.apply(STR_VAL));
      }
    
      private static class StringWrapper {
        private final String value;
    
        StringWrapper(String value) {
          this.value = value;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.2K bytes
    - Viewed (0)
Back to top