Uses of Interface
org.mockito.listeners.InvocationListener
-
Packages that use InvocationListener Package Description org.mockito Mockito is a mock library for java - seeMockito
class for usage.org.mockito.internal.creation Mock object creation.org.mockito.internal.creation.settings org.mockito.internal.debugging Whatever helps in debugging failed tests.org.mockito.internal.exceptions org.mockito.internal.handler org.mockito.mock Mock settings related classes. -
-
Uses of InvocationListener in org.mockito
Methods in org.mockito with parameters of type InvocationListener Modifier and Type Method Description MockSettings
MockSettings. invocationListeners(InvocationListener... listeners)
Registers a listener for method invocations on this mock. -
Uses of InvocationListener in org.mockito.internal.creation
Methods in org.mockito.internal.creation with parameters of type InvocationListener Modifier and Type Method Description MockSettings
MockSettingsImpl. invocationListeners(InvocationListener... listeners)
-
Uses of InvocationListener in org.mockito.internal.creation.settings
Fields in org.mockito.internal.creation.settings with type parameters of type InvocationListener Modifier and Type Field Description protected java.util.List<InvocationListener>
CreationSettings. invocationListeners
Methods in org.mockito.internal.creation.settings that return types with arguments of type InvocationListener Modifier and Type Method Description java.util.List<InvocationListener>
CreationSettings. getInvocationListeners()
-
Uses of InvocationListener in org.mockito.internal.debugging
Classes in org.mockito.internal.debugging that implement InvocationListener Modifier and Type Class Description class
VerboseMockInvocationLogger
Logs all invocations to standard output. -
Uses of InvocationListener in org.mockito.internal.exceptions
Methods in org.mockito.internal.exceptions with parameters of type InvocationListener Modifier and Type Method Description static MockitoException
Reporter. invocationListenerThrewException(InvocationListener listener, java.lang.Throwable listenerThrowable)
-
Uses of InvocationListener in org.mockito.internal.handler
Fields in org.mockito.internal.handler with type parameters of type InvocationListener Modifier and Type Field Description private java.util.List<InvocationListener>
InvocationNotifierHandler. invocationListeners
-
Uses of InvocationListener in org.mockito.mock
Methods in org.mockito.mock that return types with arguments of type InvocationListener Modifier and Type Method Description java.util.List<InvocationListener>
MockCreationSettings. getInvocationListeners()
InvocationListener
instances attached to this mock, seeMockSettings.invocationListeners(InvocationListener...)
.
-