Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for assertThatDoubleStream (0.2 sec)

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

        assertThat(stream(OptionalLong.empty())).isEmpty();
        assertThat(stream(OptionalLong.of(5L))).containsExactly(5L);
      }
    
      public void testStream_optionalDouble() {
        assertThatDoubleStream(stream(OptionalDouble.empty())).isEmpty();
        assertThatDoubleStream(stream(OptionalDouble.of(5.0))).containsExactly(5.0);
      }
    
      public void testConcatInfiniteStream() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 20K bytes
    - Viewed (0)
Back to top