Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testImmutableSortedCopy (0.08 seconds)

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

        assertEquals(Arrays.<@Nullable Integer>asList(0, 0, 3, 5, 9, null), sortedInts);
    
        assertEquals(emptyList(), numberOrdering.sortedCopy(Collections.<Integer>emptyList()));
      }
    
      public void testImmutableSortedCopy() {
        ImmutableList<Integer> unsortedInts = ImmutableList.of(5, 3, 0, 9, 3);
        ImmutableList<Integer> sortedInts = numberOrdering.immutableSortedCopy(unsortedInts);
        assertEquals(asList(0, 3, 3, 5, 9), sortedInts);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/OrderingTest.java

        assertEquals(Arrays.<@Nullable Integer>asList(0, 0, 3, 5, 9, null), sortedInts);
    
        assertEquals(emptyList(), numberOrdering.sortedCopy(Collections.<Integer>emptyList()));
      }
    
      public void testImmutableSortedCopy() {
        ImmutableList<Integer> unsortedInts = ImmutableList.of(5, 3, 0, 9, 3);
        ImmutableList<Integer> sortedInts = numberOrdering.immutableSortedCopy(unsortedInts);
        assertEquals(asList(0, 3, 3, 5, 9), sortedInts);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 43.2K bytes
    - Click Count (0)
Back to Top