static <I,O> org.hamcrest.Matcher<I> |
Java8Matchers.where(DescribablePredicate<? super I> booleanProperty) |
Match a boolean property of an object which should be
true .
|
static <I,O> org.hamcrest.Matcher<I> |
Java8Matchers.where(String propertyDescription,
DescribablePredicate<? super I> booleanProperty) |
Match a boolean property of an object which should be
true .
|
static <I,O> org.hamcrest.Matcher<I> |
Java8Matchers.whereNot(DescribablePredicate<? super I> booleanProperty) |
Match a boolean property of an object which should be
false .
|
static <I,O> org.hamcrest.Matcher<I> |
Java8Matchers.whereNot(String propertyDescription,
DescribablePredicate<? super I> booleanProperty) |
Match a boolean property of an object which should be
false .
|