Uses of Class
specialized_checkers.lambda.CheckerCallable
Packages that use CheckerCallable
-
Uses of CheckerCallable in specialized_checkers.lambda
Subclasses with type arguments of type CheckerCallable in specialized_checkers.lambdaModifier and TypeClassDescriptionclass
A specialized checker forCallable
instances, providing fluent assertions for validating the behavior and results ofCallable
tasks.Methods in specialized_checkers.lambda that return CheckerCallableModifier and TypeMethodDescriptionCheckerCallable.callWithoutException()
Asserts that calling thecall()
method of theCallable
does not throw any exception.static <V> CheckerCallable
<V> Creates a newCheckerCallable
for the givenCallable
instance with a default name.static <V> CheckerCallable
<V> Creates a newCheckerCallable
for the givenCallable
instance with a custom name.CheckerCallable.producesExpected
(V expected) Asserts that thecall()
method of theCallable
produces the expected result.CheckerCallable.producesNonNull()
Asserts that thecall()
method of theCallable
produces a non-null result.protected CheckerCallable
<V> CheckerCallable.self()
Returns this checker instance (for fluent API usage).