public class Not extends Object implements ArgumentMatcher<Object>, Serializable
| Constructor and Description |
|---|
Not(ArgumentMatcher<?> matcher) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
matches(Object actual)
Informs if this matcher accepts the given argument.
|
String |
toString() |
public Not(ArgumentMatcher<?> matcher)
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.