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)
}