protected MultiTypeSafeMatcher(ReflectiveTypeFinder typeFinder) {
this.expectedMainType = typeFinder.findExpectedType(getClass());
}
java类org.hamcrest.internal.ReflectiveTypeFinder的实例源码
MultiTypeSafeMatcher.java 文件源码
项目:GfxAssert
阅读 21
收藏 0
点赞 0
评论 0
CheckAndDiagnoseTogetherMatcher.java 文件源码
项目:redsniff
阅读 81
收藏 0
点赞 0
评论 0
protected CheckAndDiagnoseTogetherMatcher(ReflectiveTypeFinder typeFinder) {
super(typeFinder);
}
PathAwareDiagnosingMatcher.java 文件源码
项目:smog
阅读 23
收藏 0
点赞 0
评论 0
protected PathAwareDiagnosingMatcher(ReflectiveTypeFinder typeFinder) {
this.expectedType = typeFinder.findExpectedType(getClass());
}
CompositeMatcher.java 文件源码
项目:timbuctoo
阅读 21
收藏 0
点赞 0
评论 0
public CompositeMatcher(ReflectiveTypeFinder typeFinder) {
super(typeFinder);
}
TypeSafeDiagnosingMatcher.java 文件源码
项目:lcm
阅读 44
收藏 0
点赞 0
评论 0
/**
* Use this constructor if the subclass that implements <code>matchesSafely</code>
* is <em>not</em> the class that binds <T> to a type.
* @param typeFinder A type finder to extract the type
*/
protected TypeSafeDiagnosingMatcher(ReflectiveTypeFinder typeFinder) {
this.expectedType = typeFinder.findExpectedType(getClass());
}
TypeSafeMatcher.java 文件源码
项目:lcm
阅读 24
收藏 0
点赞 0
评论 0
/**
* Use this constructor if the subclass that implements <code>matchesSafely</code>
* is <em>not</em> the class that binds <T> to a type.
* @param typeFinder A type finder to extract the type
*/
protected TypeSafeMatcher(ReflectiveTypeFinder typeFinder) {
this.expectedType = typeFinder.findExpectedType(getClass());
}
TypeSafeDiagnosingMatcher.java 文件源码
项目:org.openntf.domino
阅读 25
收藏 0
点赞 0
评论 0
/**
* Use this constructor if the subclass that implements <code>matchesSafely</code> is <em>not</em> the class that binds <T> to a
* type.
*
* @param typeFinder
* A type finder to extract the type
*/
protected TypeSafeDiagnosingMatcher(final ReflectiveTypeFinder typeFinder) {
this.expectedType = typeFinder.findExpectedType(getClass());
}
TypeSafeMatcher.java 文件源码
项目:org.openntf.domino
阅读 26
收藏 0
点赞 0
评论 0
/**
* Use this constructor if the subclass that implements <code>matchesSafely</code>
* is <em>not</em> the class that binds <T> to a type.
* @param typeFinder A type finder to extract the type
*/
protected TypeSafeMatcher(ReflectiveTypeFinder typeFinder) {
this.expectedType = typeFinder.findExpectedType(getClass());
}
TypeSafeDiagnosingMatcher.java 文件源码
项目:health-and-care-developer-network
阅读 27
收藏 0
点赞 0
评论 0
/**
* Use this constructor if the subclass that implements <code>matchesSafely</code>
* is <em>not</em> the class that binds <T> to a type.
* @param typeFinder A type finder to extract the type
*/
protected TypeSafeDiagnosingMatcher(ReflectiveTypeFinder typeFinder) {
this.expectedType = typeFinder.findExpectedType(getClass());
}
TypeSafeMatcher.java 文件源码
项目:health-and-care-developer-network
阅读 31
收藏 0
点赞 0
评论 0
/**
* Use this constructor if the subclass that implements <code>matchesSafely</code>
* is <em>not</em> the class that binds <T> to a type.
* @param typeFinder A type finder to extract the type
*/
protected TypeSafeMatcher(ReflectiveTypeFinder typeFinder) {
this.expectedType = typeFinder.findExpectedType(getClass());
}