Uses of Class
org.assertj.core.presentation.PredicateDescription
-
Packages that use PredicateDescription Package Description org.assertj.core.api org.assertj.core.error org.assertj.core.internal org.assertj.core.presentation -
-
Uses of PredicateDescription in org.assertj.core.api
Methods in org.assertj.core.api with parameters of type PredicateDescription Modifier and Type Method Description private SELF
AbstractCompletableFutureAssert. isCompletedWithValueMatching(java.util.function.Predicate<? super RESULT> predicate, PredicateDescription description)
private SELF
AbstractAssert. matches(java.util.function.Predicate<? super ACTUAL> predicate, PredicateDescription predicateDescription)
-
Uses of PredicateDescription in org.assertj.core.error
Methods in org.assertj.core.error with parameters of type PredicateDescription Modifier and Type Method Description static <T> ErrorMessageFactory
ElementsShouldMatch. elementsShouldMatch(java.lang.Object actual, T elementsNotMatchingPredicate, PredicateDescription predicateDescription)
static <T> ErrorMessageFactory
NoElementsShouldMatch. noElementsShouldMatch(java.lang.Object actual, T elementMatchingPredicate, PredicateDescription predicateDescription)
static <T> ErrorMessageFactory
ShouldAccept. shouldAccept(java.util.function.Predicate<? super T> predicate, T value, PredicateDescription description)
Creates a newShouldAccept
.static <T> ErrorMessageFactory
ShouldMatch. shouldMatch(T actual, java.util.function.Predicate<? super T> predicate, PredicateDescription predicateDescription)
Creates a newShouldMatch
.static <T> ErrorMessageFactory
ShouldNotAccept. shouldNotAccept(java.util.function.Predicate<? super T> predicate, T value, PredicateDescription description)
Creates a newShouldNotAccept
.static <T> ErrorMessageFactory
ShouldNotMatch. shouldNotMatch(T actual, java.util.function.Predicate<? super T> predicate, PredicateDescription predicateDescription)
Creates a newShouldNotMatch
.Constructors in org.assertj.core.error with parameters of type PredicateDescription Constructor Description ElementsShouldMatch(java.lang.Object actual, java.lang.Iterable<?> notMatching, PredicateDescription predicateDescription)
ElementsShouldMatch(java.lang.Object actual, java.lang.Object notMatching, PredicateDescription predicateDescription)
NoElementsShouldMatch(java.lang.Object actual, java.lang.Object satisfies, PredicateDescription predicateDescription)
ShouldAccept(java.util.function.Predicate<?> predicate, java.lang.Object value, PredicateDescription description)
ShouldMatch(java.lang.Object actual, java.util.function.Predicate<?> predicate, PredicateDescription description)
ShouldNotAccept(java.util.function.Predicate<?> predicate, java.lang.Object value, PredicateDescription description)
ShouldNotMatch(java.lang.Object actual, java.util.function.Predicate<?> predicate, PredicateDescription description)
-
Uses of PredicateDescription in org.assertj.core.internal
Methods in org.assertj.core.internal with parameters of type PredicateDescription Modifier and Type Method Description <E> void
Iterables. assertAllMatch(AssertionInfo info, java.lang.Iterable<? extends E> actual, java.util.function.Predicate<? super E> predicate, PredicateDescription predicateDescription)
<E> void
Iterables. assertNoneMatch(AssertionInfo info, java.lang.Iterable<? extends E> actual, java.util.function.Predicate<? super E> predicate, PredicateDescription predicateDescription)
-
Uses of PredicateDescription in org.assertj.core.presentation
Fields in org.assertj.core.presentation declared as PredicateDescription Modifier and Type Field Description static PredicateDescription
PredicateDescription. GIVEN
Methods in org.assertj.core.presentation with parameters of type PredicateDescription Modifier and Type Method Description protected java.lang.String
StandardRepresentation. toStringOf(PredicateDescription p)
-