public class ArrayMatcher extends AbstractMatcher
| Constructor and Description |
|---|
ArrayMatcher() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
argumentMatches(java.lang.Object expected,
java.lang.Object actual)
Checks whether an expected argument matches an actual argument; the method
is used by
AbstractMatcher.matches(Object[], Object[]). |
argumentToString, matches, toStringpublic boolean argumentMatches(java.lang.Object expected,
java.lang.Object actual)
AbstractMatcherAbstractMatcher.matches(Object[], Object[]). The arguments
provided to this method are always not null.argumentMatches in class AbstractMatcherexpected - the expected argument.actual - the actual argument.