- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testConcatIterable (0.14 sec)
-
android/guava-tests/test/com/google/common/collect/FluentIterableTest.java
public void testOf_empty() { assertEquals(ImmutableList.of(), Lists.newArrayList(FluentIterable.of())); } // Exhaustive tests are in IteratorsTest. These are copied from IterablesTest. public void testConcatIterable() { List<Integer> list1 = newArrayList(1); List<Integer> list2 = newArrayList(4); List<List<Integer>> input = newArrayList(list1, list2);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 30.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/IterablesTest.java
assertEquals("a", string); break; } assertEquals("[a, b] (cycled)", cycle.toString()); } // Again, the exhaustive tests are in IteratorsTest public void testConcatIterable() { List<Integer> list1 = newArrayList(1); List<Integer> list2 = newArrayList(4); List<List<Integer>> input = newArrayList(list1, list2); Iterable<Integer> result = Iterables.concat(input);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 19:12:33 UTC 2024 - 45K bytes - Viewed (0)