- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for testOnlyElementSingleton (0.09 seconds)
-
android/guava-tests/test/com/google/common/collect/MoreCollectorsTest.java
} public void testOnlyElement() { assertThrows(NoSuchElementException.class, () -> Stream.empty().collect(onlyElement())); } public void testOnlyElementSingleton() { assertThat(Stream.of(1).collect(onlyElement())).isEqualTo(1); } public void testOnlyElementNull() { assertThat(Stream.<@Nullable Object>of((Object) null).collect(onlyElement())).isNull(); }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu May 15 21:47:56 GMT 2025 - 3.2K bytes - Click Count (0)