public class AllOf<T> extends DiagnosingMatcher<T>
false
.Constructor and Description |
---|
AllOf(java.lang.Iterable<Matcher<? super T>> matchers) |
AllOf(Matcher<? super T>... matchers) |
Modifier and Type | Method and Description |
---|---|
static <T> Matcher<T> |
allOf(java.lang.Iterable<Matcher<? super T>> matchers)
Creates a matcher that matches if the examined object matches ALL of the specified matchers.
|
static <T> Matcher<T> |
allOf(Matcher<? super T>... matchers)
Creates a matcher that matches if the examined object matches ALL of the specified matchers.
|
void |
describeTo(Description description)
Generates a description of the object.
|
boolean |
matches(java.lang.Object o,
Description mismatch) |
describeMismatch, matches
_dont_implement_Matcher___instead_extend_BaseMatcher_, isNotNull, toString
public boolean matches(java.lang.Object o, Description mismatch)
matches
in class DiagnosingMatcher<T>
public void describeTo(Description description)
SelfDescribing
description
- The description to be built or appended to.public static <T> Matcher<T> allOf(java.lang.Iterable<Matcher<? super T>> matchers)
assertThat("myValue", allOf(startsWith("my"), containsString("Val")))