Uses of Class
specialized_checkers.lambda.CheckerSupplier
Packages that use CheckerSupplier
-
Uses of CheckerSupplier in specialized_checkers.lambda
Subclasses with type arguments of type CheckerSupplier in specialized_checkers.lambdaModifier and TypeClassDescriptionclass
A specialized checker forSupplier
instances, providing a fluent API for validating function behavior and results.Methods in specialized_checkers.lambda that return CheckerSupplierModifier and TypeMethodDescriptionCheckerSupplier.applyWithoutException()
Asserts that calling theget()
method of theSupplier
does not throw any exception.static <T> CheckerSupplier
<T> Creates a newCheckerSupplier
for the givenSupplier
instance with a default name.static <T> CheckerSupplier
<T> Creates a newCheckerSupplier
for the givenSupplier
instance with a custom name.CheckerSupplier.producesExpected
(T expected) Asserts that theget()
method of theSupplier
produces the expected result.CheckerSupplier.producesNonNull()
Asserts that theget()
method of theSupplier
produces a non-null result.protected CheckerSupplier
<T> CheckerSupplier.self()
Returns this checker instance (for fluent API usage).