Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testToOptionalMultipleWithNull (0.18 sec)

  1. guava-tests/test/com/google/common/collect/MoreCollectorsTest.java

        IllegalArgumentException expected =
            assertThrows(IllegalArgumentException.class, () -> Stream.of(1, 2).collect(toOptional()));
        assertThat(expected.getMessage()).contains("1, 2");
      }
    
      public void testToOptionalMultipleWithNull() {
        assertThrows(NullPointerException.class, () -> Stream.of(1, null).collect(toOptional()));
      }
    
      public void testToOptionalMany() {
        IllegalArgumentException expected =
            assertThrows(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top