/**
* Matches any value assignable to the given class, or <code>null</code>.
*
* @return <code>null</code> if the given class is an object, or the primitive's default value if the given class is a primitive
*/
@SuppressWarnings("unchecked")
static public <T> T any(Class<T> clazz) {
return (T) argThat(clazz, AnyOf.anyOf(new IsNull(), new IsInstanceOf(MoxieUtils.toNonPrimitive(clazz))));
}
MoxieMatchers.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:moxiemocks
作者:
评论列表
文章目录