Class CapturingMatcher<T>

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

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

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    captureFrom(Object argument)
     
    void
    describeTo(org.hamcrest.Description description)
    By default this method decamelizes matchers name to promote meaningful names for matchers.
     
     
    boolean
    matches(Object argument)
    Returns whether this matcher accepts the given argument.

    Methods inherited from class org.hamcrest.BaseMatcher

    _dont_implement_Matcher___instead_extend_BaseMatcher_, describeMismatch, isNotNull, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • CapturingMatcher

      public CapturingMatcher()
  • 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.
    • getLastValue

      public T getLastValue()
    • getAllValues

      public List<T> getAllValues()
    • captureFrom

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