public class Or extends Object implements ArgumentMatcher<Object>, Serializable
| Constructor and Description |
|---|
Or(ArgumentMatcher<?> m1,
ArgumentMatcher<?> m2) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
matches(Object actual)
Informs if this matcher accepts the given argument.
|
String |
toString() |
public Or(ArgumentMatcher<?> m1, ArgumentMatcher<?> m2)
public boolean matches(Object actual)
ArgumentMatcherThe method should never assert if the argument doesn't match. It should only return false.
See the example in the top level javadoc for ArgumentMatcher
matches in interface ArgumentMatcher<Object>actual - the argumentCopyright © 2024. All rights reserved.