Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testPaddedPartition_empty (0.08 sec)

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

      public void testPaddedPartition_badSize() {
        Iterator<Integer> source = singletonIterator(1);
        assertThrows(IllegalArgumentException.class, () -> Iterators.paddedPartition(source, 0));
      }
    
      public void testPaddedPartition_empty() {
        Iterator<Integer> source = emptyIterator();
        Iterator<List<Integer>> partitions = Iterators.paddedPartition(source, 1);
        assertFalse(partitions.hasNext());
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

      public void testPaddedPartition_badSize() {
        Iterator<Integer> source = singletonIterator(1);
        assertThrows(IllegalArgumentException.class, () -> Iterators.paddedPartition(source, 0));
      }
    
      public void testPaddedPartition_empty() {
        Iterator<Integer> source = emptyIterator();
        Iterator<List<Integer>> partitions = Iterators.paddedPartition(source, 1);
        assertFalse(partitions.hasNext());
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
Back to top