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