Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testRetainAll_countIgnored (0.11 sec)

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

            collection.retainAll(MinimalCollection.of(e2())));
        expectContents(e2());
      }
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(SEVERAL)
      public void testRetainAll_countIgnored() {
        resetContainer(getSubjectGenerator().create(e0(), e2(), e1(), e0()));
        assertTrue(getList().retainAll(asList(e0(), e1())));
        assertContentsInOrder(getList(), e0(), e1(), e0());
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top