ListMatchers

Hamcrest Matcher implementations.

API

ListMatchers.java
class ListMatchers {
  Matcher<List<?>> containsElementThat(Matcher<?> elementMatcher)
  Matcher<List<T>> sameContentsAs(List<T> expected)
  Matcher<List<T>> listContaining(T t)
  Matcher<List<T>> listContainingAll(T... items)
  Matcher<List<Object>> containsObjectOfType(Class<?> cls)
}