Package org.jmock.internal
Interface ParametersMatcher
-
- All Superinterfaces:
org.hamcrest.Matcher<Object[]>
,org.hamcrest.SelfDescribing
- All Known Implementing Classes:
AllParametersMatcher
public interface ParametersMatcher extends org.hamcrest.Matcher<Object[]>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isCompatibleWith(Object[] parameters)
Is this matcher likely to be relevant to the given parameters?
-
-
-
Method Detail
-
isCompatibleWith
boolean isCompatibleWith(Object[] parameters)
Is this matcher likely to be relevant to the given parameters?- Parameters:
parameters
- The parameters to be matched- Returns:
- true iff the parameters may be relevant.
-
-