Uses of Interface
org.easymock.IArgumentMatcher
Packages that use IArgumentMatcher
-
Uses of IArgumentMatcher in org.easymock
Methods in org.easymock with parameters of type IArgumentMatcherModifier and TypeMethodDescriptionstatic voidEasyMock.reportMatcher(IArgumentMatcher matcher) Reports an argument matcher. -
Uses of IArgumentMatcher in org.easymock.internal
Methods in org.easymock.internal that return types with arguments of type IArgumentMatcherMethods in org.easymock.internal with parameters of type IArgumentMatcherModifier and TypeMethodDescriptionstatic voidLastControl.reportMatcher(IArgumentMatcher matcher) Constructor parameters in org.easymock.internal with type arguments of type IArgumentMatcherModifierConstructorDescriptionExpectedInvocation(Invocation invocation, List<IArgumentMatcher> matchers) -
Uses of IArgumentMatcher in org.easymock.internal.matchers
Classes in org.easymock.internal.matchers that implement IArgumentMatcherModifier and TypeClassDescriptionclassMatches if all given argument matchers match.final classMatches any argument.classMatches if the argument is an array where the elements are equal to the given array.classCaptures<T>Captures the argument to retrieve it later and matches anything.classCompare<T>Matches if the argument, when compared (Comparator.compare()), agrees with the logical operator.classCompareEqual<T extends Comparable<T>>Matches if the argument is equal when compared (as inComparable.compareTo() == 0) to the given value.classCompareTo<T extends Comparable<T>>Base class for matchers that are comparing a value to another.classMatches if the argument is a string containing a given substring.classMatches if the argument is a string ending with a given suffix.classMatches if the argument is equal to the given value.classMatches if the argument is a number equal to the given value with some tolerance equal to delta.classMatches if the argument is a string in which a regex can be found.classGreaterOrEqual<T extends Comparable<T>>Matches if the argument is greater or equal to the given value.classGreaterThan<T extends Comparable<T>>Matches if the argument is strictly greater than the given value.classMatches if the argument is an instance of the given class.classLessOrEqual<T extends Comparable<T>>Matches if the argument is less or equal to the given value.classLessThan<T extends Comparable<T>>Match if the argument is less than the given value.classMatches if the argument is a string matching a given regex.classMatches if the argument DOESN'T match another.final classMatches if the argument is not null.classMatches if the argument is null.classMatches if any given argument matcher matches.classMatches if the argument is the same instance as the given value.classMatches if the argument is a string starting with the given prefix.Constructors in org.easymock.internal.matchers with parameters of type IArgumentMatcherConstructor parameters in org.easymock.internal.matchers with type arguments of type IArgumentMatcherModifierConstructorDescriptionAnd(List<IArgumentMatcher> matchers) Creates a new And matcher from a list of matchers that should match altogether.Or(List<IArgumentMatcher> matchers)