Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        assertEquals(Sets.newHashSet("google"), keySet.tailSet("yahoo"));
        assertEquals(Sets.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: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 8.3K 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: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top