Class VarargCapturingMatcher<T>

java.lang.Object
org.hamcrest.BaseMatcher<T>
org.mockito.ArgumentMatcher<T>
org.mockito.internal.matchers.VarargCapturingMatcher<T>
All Implemented Interfaces:
Serializable, org.hamcrest.Matcher<T>, org.hamcrest.SelfDescribing, CapturesArguments, VarargMatcher

public class VarargCapturingMatcher<T> extends ArgumentMatcher<T> implements CapturesArguments, VarargMatcher, Serializable
See Also:
  • Constructor Details

    • VarargCapturingMatcher

      public VarargCapturingMatcher()
  • Method Details

    • matches

      public boolean matches(Object argument)
      Description copied from class: ArgumentMatcher
      Returns whether this matcher accepts the given argument.

      The method should never assert if the argument doesn't match. It should only return false.

      Specified by:
      matches in interface org.hamcrest.Matcher<T>
      Specified by:
      matches in class ArgumentMatcher<T>
      Parameters:
      argument - the argument
      Returns:
      whether this matcher accepts the given argument.
    • describeTo

      public void describeTo(org.hamcrest.Description description)
      Description copied from class: ArgumentMatcher
      By default this method decamelizes matchers name to promote meaningful names for matchers.

      For example StringWithStrongLanguage matcher will generate 'String with strong language' description in case of failure.

      You might want to override this method to provide more specific description of the matcher (useful when verification failures are reported).

      Specified by:
      describeTo in interface org.hamcrest.SelfDescribing
      Overrides:
      describeTo in class ArgumentMatcher<T>
      Parameters:
      description - the description to which the matcher description is appended.
    • getLastVarargs

      public List<T> getLastVarargs()
    • getAllVarargs

      public List<List<T>> getAllVarargs()
    • captureFrom

      public void captureFrom(Object varArgArray)
      Specified by:
      captureFrom in interface CapturesArguments