Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testRemoveAll_somePresentLargeCollectionToRemove (0.64 sec)

  1. guava-testlib/src/com/google/common/collect/testing/testers/CollectionRemoveAllTester.java

      }
    
      /** Trigger the {@code other.size() >= this.size()} case in {@link AbstractSet#removeAll}. */
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testRemoveAll_somePresentLargeCollectionToRemove() {
        assertTrue(
            "removeAll(largeIntersectingCollection) should return true",
            collection.removeAll(MinimalCollection.of(e0(), e0(), e0(), e3(), e3(), e3())));
        expectMissing(e0());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRemoveAllTester.java

      }
    
      /** Trigger the {@code other.size() >= this.size()} case in {@link AbstractSet#removeAll}. */
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testRemoveAll_somePresentLargeCollectionToRemove() {
        assertTrue(
            "removeAll(largeIntersectingCollection) should return true",
            collection.removeAll(MinimalCollection.of(e0(), e0(), e0(), e3(), e3(), e3())));
        expectMissing(e0());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top