Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testOrderedPermutationSetEmpty (0.23 seconds)

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

      public void testNullPointerExceptions() {
        NullPointerTester tester = new NullPointerTester();
        tester.testAllPublicStaticMethods(Collections2.class);
      }
    
      public void testOrderedPermutationSetEmpty() {
        List<Integer> list = new ArrayList<>();
        Collection<List<Integer>> permutationSet = Collections2.orderedPermutations(list);
    
        assertEquals(1, permutationSet.size());
    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. android/guava-tests/test/com/google/common/collect/Collections2Test.java

      public void testNullPointerExceptions() {
        NullPointerTester tester = new NullPointerTester();
        tester.testAllPublicStaticMethods(Collections2.class);
      }
    
      public void testOrderedPermutationSetEmpty() {
        List<Integer> list = new ArrayList<>();
        Collection<List<Integer>> permutationSet = Collections2.orderedPermutations(list);
    
        assertEquals(1, permutationSet.size());
    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