Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for assertContainsAllOf (0.06 sec)

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

              break;
            }
          }
        }
    
        if (!contained) {
          fail("Not true that " + actual + " contains " + expected);
        }
      }
    
      public static void assertContainsAllOf(Iterable<?> actual, Object... expected) {
        List<Object> expectedList = new ArrayList<>(asList(expected));
    
        for (Object o : actual) {
          expectedList.remove(o);
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top