Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertContainsAllOf (3.39 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 Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 10 23:13:45 UTC 2025
    - 17.2K bytes
    - Viewed (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);
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 10 23:13:45 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top