Interface VerificationStartedEvent


public interface VerificationStartedEvent
The instance of this class is passed to VerificationStartedListener. For all the details, including how and why to use this API, see VerificationStartedListener.
Since:
2.11.0
  • Method Summary

    Modifier and Type
    Method
    Description
    The mock object that will be used during verification.
    void
    Replaces existing mock object for verification with a different one.
  • Method Details

    • setMock

      void setMock(Object mock)
      Replaces existing mock object for verification with a different one. Needed for very advanced framework integrations. For all the details, including how and why see VerificationStartedListener.

      If this method is used to replace the mock the sibling method getMock() will return the new value. CAVEAT: if setMock(Object) is invoked multiple times from one or many listeners the sibling method getMock() will return mock that was set by most recent invocation of setMock(Object).

      Parameters:
      mock - to be used for verification.
      Since:
      2.11.0
    • getMock

      Object getMock()
      The mock object that will be used during verification. See sibling method setMock(Object) for more details. Please see VerificationStartedListener for all details of verification started listeners.
      Since:
      2.11.0