T
- Type of the values comparedpublic class Compare<T> extends Object implements IArgumentMatcher, Serializable
Constructor and Description |
---|
Compare(T expected,
Comparator<? super T> comparator,
LogicalOperator result) |
Modifier and Type | Method and Description |
---|---|
void |
appendTo(StringBuffer buffer)
Appends a string representation of this matcher to the given buffer.
|
boolean |
matches(Object actual)
Returns whether this matcher accepts the given argument.
|
public Compare(T expected, Comparator<? super T> comparator, LogicalOperator result)
public void appendTo(StringBuffer buffer)
IArgumentMatcher
appendTo
in interface IArgumentMatcher
buffer
- the buffer to which the string representation is appended.public boolean matches(Object actual)
IArgumentMatcher
Like Object.equals(), it should be aware that the argument passed might be null and of any type. So you will usually start the method with an instanceof and/or null check.
The method should never assert if the argument doesn't match. It should only return false. EasyMock will take care of asserting if the call is really unexpected.
matches
in interface IArgumentMatcher
actual
- the argumentCopyright © 2001–2022 EasyMock contributors. All rights reserved.