Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testOrNull_present (0.05 sec)

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

        assertEquals(Optional.of("fallback"), Optional.absent().or(Optional.of("fallback")));
      }
    
      @SuppressWarnings("OptionalOfRedundantMethod") // Unit tests for Optional
      public void testOrNull_present() {
        assertEquals("a", Optional.of("a").orNull());
      }
    
      public void testOrNull_absent() {
        assertThat(Optional.absent().orNull()).isNull();
      }
    
      public void testAsSet_present() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 16:03:47 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top