Searched refs:returnNull (Results 1 – 4 of 4) sorted by relevance
56 return reportMatcher(new GreaterOrEqual<T>(value)).<T>returnNull(); in geq()147 return reportMatcher(new LessOrEqual<T>(value)).<T>returnNull(); in leq()238 return reportMatcher(new GreaterThan<T>(value)).<T>returnNull(); in gt()329 return reportMatcher(new LessThan<T>(value)).<T>returnNull(); in lt()421 return reportMatcher(new CompareEqual<T>(value)).<T>returnNull(); in cmpEq()433 return reportMatcher(new Find(regex)).<String>returnNull(); in find()449 return reportMatcher(new ArrayEquals(value)).returnNull(); in aryEq()463 return reportMatcher(new ArrayEquals(value)).returnNull(); in aryEq()477 return reportMatcher(new ArrayEquals(value)).returnNull(); in aryEq()491 return reportMatcher(new ArrayEquals(value)).returnNull(); in aryEq()[all …]
243 return (T) reportMatcher(Any.ANY).returnNull(); in anyObject()270 return (T) reportMatcher(AnyVararg.ANY_VARARG).returnNull(); in anyVararg()616 return reportMatcher(new ReflectionEquals(value, excludeFields)).<T>returnNull(); in refEq()642 return reportMatcher(Null.NULL).returnNull(); in isNull()655 return (T) reportMatcher(Null.NULL).returnNull(); in isNull()668 return reportMatcher(NotNull.NOT_NULL).returnNull(); in notNull()683 return (T) reportMatcher(NotNull.NOT_NULL).returnNull(); in notNull()778 return reportMatcher(matcher).<T>returnNull(); in argThat()
4 int *returnNull() { return 0; } in returnNull() function10 int *x = returnNull(); in testCycle()13 x = returnNull(); in testCycle()
23 public <T> T returnNull() { in returnNull() method in HandyReturnValues