Uses of Interface
org.easymock.IArgumentMatcher
-
Packages that use IArgumentMatcher Package Description org.easymock org.easymock.internal org.easymock.internal.matchers -
-
Uses of IArgumentMatcher in org.easymock
Methods in org.easymock with parameters of type IArgumentMatcher Modifier and Type Method Description static voidEasyMock. reportMatcher(IArgumentMatcher matcher)Reports an argument matcher. -
Uses of IArgumentMatcher in org.easymock.internal
Fields in org.easymock.internal with type parameters of type IArgumentMatcher Modifier and Type Field Description private java.util.List<IArgumentMatcher>ExpectedInvocation. matchersprivate static java.lang.ThreadLocal<java.util.List<IArgumentMatcher>>LastControl. threadToArgumentMatcherStackMethods in org.easymock.internal that return types with arguments of type IArgumentMatcher Modifier and Type Method Description private java.util.List<IArgumentMatcher>ExpectedInvocation. createMissingMatchers(Invocation invocation, java.util.List<IArgumentMatcher> matchers)private static java.util.List<IArgumentMatcher>LastControl. popLastArgumentMatchers(int count)static java.util.List<IArgumentMatcher>LastControl. pullMatchers()Methods in org.easymock.internal with parameters of type IArgumentMatcher Modifier and Type Method Description static voidLastControl. reportMatcher(IArgumentMatcher matcher)Method parameters in org.easymock.internal with type arguments of type IArgumentMatcher Modifier and Type Method Description private java.util.List<IArgumentMatcher>ExpectedInvocation. createMissingMatchers(Invocation invocation, java.util.List<IArgumentMatcher> matchers)Constructor parameters in org.easymock.internal with type arguments of type IArgumentMatcher Constructor Description ExpectedInvocation(Invocation invocation, java.util.List<IArgumentMatcher> matchers) -
Uses of IArgumentMatcher in org.easymock.internal.matchers
Classes in org.easymock.internal.matchers that implement IArgumentMatcher Modifier and Type Class Description classAndMatches if all given argument matchers match.classAnyMatches any argument.classArrayEqualsMatches 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 java.lang.Comparable<T>>Matches if the argument is equal when compared (as inComparable.compareTo() == 0) to the given value.classCompareTo<T extends java.lang.Comparable<T>>Base class for matchers that are comparing a value to another.classContainsMatches if the argument is a string containing a given substring.classEndsWithMatches if the argument is a string ending with a given suffix.classEqualsMatches if the argument is equal to the given value.classEqualsWithDeltaMatches if the argument is a number equal to the given value with some tolerance equal to delta.classFindMatches if the argument is a string in which a regex can be found.classGreaterOrEqual<T extends java.lang.Comparable<T>>Matches if the argument is greater or equal to the given value.classGreaterThan<T extends java.lang.Comparable<T>>Matches if the argument is strictly greater than the given value.classInstanceOfMatches if the argument is an instance of the given class.classLessOrEqual<T extends java.lang.Comparable<T>>Matches if the argument is less or equal to the given value.classLessThan<T extends java.lang.Comparable<T>>Match if the argument is less than the given value.classMatchesMatches if the argument is a string matching a given regex.classNotMatches if the argument DOESN'T match another.classNotNullMatches if the argument is not null.classNullMatches if the argument is null.classOrMatches if any given argument matcher matches.classSameMatches if the argument is the same instance as the given value.classStartsWithMatches if the argument is a string starting with the given prefix.Fields in org.easymock.internal.matchers declared as IArgumentMatcher Modifier and Type Field Description private IArgumentMatcherNot. firstFields in org.easymock.internal.matchers with type parameters of type IArgumentMatcher Modifier and Type Field Description private java.util.List<IArgumentMatcher>And. matchersprivate java.util.List<IArgumentMatcher>Or. matchersConstructors in org.easymock.internal.matchers with parameters of type IArgumentMatcher Constructor Description Not(IArgumentMatcher first)Constructor parameters in org.easymock.internal.matchers with type arguments of type IArgumentMatcher Constructor Description And(java.util.List<IArgumentMatcher> matchers)Creates a new And matcher from a list of matchers that should match altogether.Or(java.util.List<IArgumentMatcher> matchers)
-