org.easymock.internal.matchers
Class ArrayEquals

java.lang.Object
  extended by org.easymock.internal.matchers.Equals
      extended by org.easymock.internal.matchers.ArrayEquals
All Implemented Interfaces:
Serializable, IArgumentMatcher

public class ArrayEquals
extends Equals

Author:
OFFIS, Tammo Freese
See Also:
Serialized Form

Constructor Summary
ArrayEquals(Object expected)
           
 
Method Summary
 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.
 
Methods inherited from class org.easymock.internal.matchers.Equals
equals, getExpected, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ArrayEquals

public ArrayEquals(Object expected)
Method Detail

matches

public boolean matches(Object actual)
Description copied from interface: IArgumentMatcher
Returns whether this matcher accepts the given argument.

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.

Specified by:
matches in interface IArgumentMatcher
Overrides:
matches in class Equals
Parameters:
actual - the argument
Returns:
whether this matcher accepts the given argument.

appendTo

public void appendTo(StringBuffer buffer)
Description copied from interface: IArgumentMatcher
Appends a string representation of this matcher to the given buffer. In case of failure, the printed message will show this string to allow to know which matcher was used for the failing call.

Specified by:
appendTo in interface IArgumentMatcher
Overrides:
appendTo in class Equals
Parameters:
buffer - the buffer to which the string representation is appended.


Copyright © 2001-2011 OFFIS, Tammo Freese, Henri Tremblay. All Rights Reserved.