Home | History | Annotate | Download | only in core

Lines Matching refs:items

67      *     the matcher to apply to items provided by the examined {@link Iterable}
82 * the item to compare against the items provided by the examined {@link Iterable}
98 * the matchers to apply to items provided by the examined {@link Iterable}
115 * item from the specified <code>items</code>. Whilst matching, each traversal of the
120 * @param items
121 * the items to compare against the items provided by the examined {@link Iterable}
124 public static <T> Matcher<Iterable<T>> hasItems(T... items) {
125 List<Matcher<? super Iterable<T>>> all = new ArrayList<>(items.length);
126 for (T item : items) {