Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testExplicitComparatorSerialization (0.95 sec)

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

        assertEquals(newHashSet("google"), keySet.tailSet("yahoo"));
        assertEquals(newHashSet("tree"), keySet.subSet("ask", "yahoo"));
      }
    
      @GwtIncompatible // SerializableTester
      public void testExplicitComparatorSerialization() {
        TreeMultimap<@Nullable String, @Nullable Integer> multimap = createPopulate();
        TreeMultimap<@Nullable String, @Nullable Integer> copy =
            SerializableTester.reserializeAndAssert(multimap);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

        assertEquals(Ordering.natural(), multimap.valueComparator());
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testExplicitComparatorSerialization() {
        TreeMultimap<String, Integer> multimap = createPopulate();
        TreeMultimap<String, Integer> copy = SerializableTester.reserializeAndAssert(multimap);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 22.4K bytes
    - Viewed (0)
Back to top