Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testPutAllPropagatesToGet (0.25 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapPutAllMultimapTester.java

        assertThrows(NullPointerException.class, () -> multimap().putAll(source));
        expectUnchanged();
      }
    
      @MapFeature.Require(SUPPORTS_PUT)
      public void testPutAllPropagatesToGet() {
        Multimap<K, V> source =
            getSubjectGenerator().create(mapEntry(k0(), v3()), mapEntry(k3(), v3()));
        Collection<V> getCollection = multimap().get(k0());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 21:10:54 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapPutIterableTester.java

                return Iterators.forArray(v3());
              }
            };
    
        multimap().putAll(k3(), iterable);
      }
    
      @MapFeature.Require(SUPPORTS_PUT)
      public void testPutAllPropagatesToGet() {
        Collection<V> getCollection = multimap().get(k0());
        int getCollectionSize = getCollection.size();
        assertTrue(multimap().putAll(k0(), newArrayList(v3(), v4())));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/MultimapPutIterableTester.java

                return Iterators.forArray(v3());
              }
            };
    
        multimap().putAll(k3(), iterable);
      }
    
      @MapFeature.Require(SUPPORTS_PUT)
      public void testPutAllPropagatesToGet() {
        Collection<V> getCollection = multimap().get(k0());
        int getCollectionSize = getCollection.size();
        assertTrue(multimap().putAll(k0(), newArrayList(v3(), v4())));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 7.4K bytes
    - Viewed (0)
Back to top