/**
* Creates a matcher that matches if the examined object matches <b>ALL</b> of the specified matchers.
* <p></p>
* For example:
* <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre>
*/
public static <T> Matcher<T> allOf(Matcher<? super T> first, Matcher<? super T> second, Matcher<? super T> third, Matcher<? super T> fourth, Matcher<? super T> fifth, Matcher<? super T> sixth) {
return AllOf.allOf(first, second, third, fourth, fifth, sixth);
}
Detective.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:detective
作者:
评论列表
文章目录