Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for assertContainsAllOf (0.12 seconds)

  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);
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 17.2K bytes
    - Click Count (0)
  2. 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);
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 17.2K bytes
    - Click Count (0)
Back to Top