- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for TestJoin (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava-tests/test/com/google/common/collect/FluentIterableTest.java
} }; assertThat(FluentIterable.from(iterable).copyInto(list)) .containsExactly(1, 2, 3, 9, 8, 7) .inOrder(); } public void testJoin() { assertThat(fluent(2, 1, 3, 4).join(Joiner.on(","))).isEqualTo("2,1,3,4"); } public void testJoin_empty() { assertThat(fluent().join(Joiner.on(","))).isEqualTo(""); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 31.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/LongsTest.java
assertThrows(IllegalArgumentException.class, () -> Longs.ensureCapacity(ARRAY1, -1, 1)); assertThrows(IllegalArgumentException.class, () -> Longs.ensureCapacity(ARRAY1, 1, -1)); } public void testJoin() { assertThat(Longs.join(",", EMPTY)).isEmpty(); assertThat(Longs.join(",", ARRAY1)).isEqualTo("1"); assertThat(Longs.join(",", 1L, 2L)).isEqualTo("1,2");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 16:45:58 GMT 2026 - 28.8K bytes - Click Count (0)