public class Equals extends java.lang.Object implements IArgumentMatcher, java.io.Serializable
Constructor and Description |
---|
Equals(java.lang.Object expected) |
Modifier and Type | Method and Description |
---|---|
void |
appendTo(java.lang.StringBuffer buffer)
Appends a string representation of this matcher to the given buffer.
|
boolean |
equals(java.lang.Object o) |
protected java.lang.Object |
getExpected() |
int |
hashCode() |
boolean |
matches(java.lang.Object actual)
Returns whether this matcher accepts the given argument.
|
public boolean matches(java.lang.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 argumentpublic void appendTo(java.lang.StringBuffer buffer)
IArgumentMatcher
appendTo
in interface IArgumentMatcher
buffer
- the buffer to which the string representation is appended.protected final java.lang.Object getExpected()
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
Copyright © 2001-2009 OFFIS, Tammo Freese, Henri Tremblay. This documentation is provided under the terms of the MIT licence.]]>