| Classes | |
|---|---|
| CompositeFilter | Runs a suite of MethodFilter s, returning true only if each filter does. |
| ExactNameFilter | Matches a method if the name is an exact match. |
| InfixNameFilter | Matches a method when the provided string appears anywhere in the method name. |
| MatchAllFilter | Matches all methods, regardless of name. |
| MethodFilter | Used by a MethodMatcher to see if a Method matches a particular (set of) requirements. |
| MethodMatcher | A utility class used for matching a MethodSignature against a method pattern (this is primarily used by interceptor factories ). |
| MethodPatternParser | Parses a method pattern (consisting of a name pattern, followed by an optional parameters pattern) into a MethodFilter . |
| MethodSubject | Class used by the method filtering tests as a subject for testing; it has some number of methods with different parameters but doesn't actually do anything. |
| NamePrefixFilter | Matches when a provide name is a prefix of the method name. |
| NameSuffixFilter | Used to match a method name against a suffix. |
| ParameterCountFilter | Checks the number of parameters against an expected count. |
| ParameterFilter | Matches a parameter at a particular index. |