java.lang.Object
org.easymock.internal.matchers.Captures<T>
- Type Parameters:
T- Type of the value captured
- All Implemented Interfaces:
Serializable,IArgumentMatcher
Captures the argument to retrieve it later and matches anything.
- Author:
- Henri Tremblay
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidappendTo(StringBuffer buffer) Appends a string representation of this matcher to the given buffer.booleanReturns whether this matcher accepts the given argument.voidsetPotentialValue(T potentialValue) void
-
Constructor Details
-
Captures
-
-
Method Details
-
appendTo
Description copied from interface:IArgumentMatcherAppends 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:
appendToin interfaceIArgumentMatcher- Parameters:
buffer- the buffer to which the string representation is appended.
-
setPotentialValue
-
matches
Description copied from interface:IArgumentMatcherReturns 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:
matchesin interfaceIArgumentMatcher- Parameters:
actual- the argument- Returns:
- whether this matcher accepts the given argument.
-
validateCapture
public void validateCapture()
-