Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for assertNoMorePermutations (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        assertNextPermutation(new ArrayList<>(), permutations);
        assertNoMorePermutations(permutations);
      }
    
      public void testOrderedPermutationSetOneElement() {
        List<Integer> list = newArrayList(1);
        Iterator<List<Integer>> permutations = Collections2.orderedPermutations(list).iterator();
    
        assertNextPermutation(newArrayList(1), permutations);
        assertNoMorePermutations(permutations);
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 20.1K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/Collections2Test.java

        assertNextPermutation(new ArrayList<>(), permutations);
        assertNoMorePermutations(permutations);
      }
    
      public void testOrderedPermutationSetOneElement() {
        List<Integer> list = newArrayList(1);
        Iterator<List<Integer>> permutations = Collections2.orderedPermutations(list).iterator();
    
        assertNextPermutation(newArrayList(1), permutations);
        assertNoMorePermutations(permutations);
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 20.1K bytes
    - Click Count (0)
Back to Top