Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testSingle_comparator (0.14 sec)

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

      public void testEmpty_serialization() {
        SortedSet<String> set = of();
        SortedSet<String> copy = SerializableTester.reserialize(set);
        assertSame(set, copy);
      }
    
      public void testSingle_comparator() {
        SortedSet<String> set = of("e");
        assertSame(Ordering.natural(), set.comparator());
      }
    
      public void testSingle_headSet() {
        SortedSet<String> set = of("e");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top