java.lang.Object
org.easymock.internal.matchers.And
- All Implemented Interfaces:
Serializable
,IArgumentMatcher
Matches if all given argument matchers match.
- Author:
- OFFIS, Tammo Freese
- See Also:
-
Constructor Summary
ConstructorDescriptionAnd
(List<IArgumentMatcher> matchers) Creates a new And matcher from a list of matchers that should match altogether. -
Method Summary
Modifier and TypeMethodDescriptionvoid
appendTo
(StringBuffer buffer) Appends a string representation of this matcher to the given buffer.boolean
Returns whether this matcher accepts the given argument.
-
Constructor Details
-
And
Creates a new And matcher from a list of matchers that should match altogether.- Parameters:
matchers
- the matchers to match altogether
-
-
Method Details
-
matches
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 interfaceIArgumentMatcher
- Parameters:
actual
- the argument- Returns:
- whether this matcher accepts the given argument.
-
appendTo
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 interfaceIArgumentMatcher
- Parameters:
buffer
- the buffer to which the string representation is appended.
-