Uses of Interface
org.mockito.listeners.InvocationListener
-
Packages that use InvocationListener Package Description org.mockito Mockito is a mock library for java - see Mockito class for for usage.org.mockito.exceptions Exception messages, exception hierarchies.org.mockito.internal.creation Mock object creation.org.mockito.internal.creation.settings org.mockito.internal.debugging Whatever helps in debugging failed testsorg.mockito.mock -
-
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.exceptions
Methods in org.mockito.exceptions with parameters of type InvocationListener Modifier and Type Method Description void
Reporter. invocationListenerThrewException(InvocationListener listener, java.lang.Throwable listenerThrowable)
-
Uses of InvocationListener in org.mockito.internal.creation
Methods in org.mockito.internal.creation that return types with arguments of type InvocationListener Modifier and Type Method Description java.util.List<InvocationListener>
MockSettingsImpl. getInvocationListeners()
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.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()
The invocation listeners attached to this mock, seeMockSettings.invocationListeners(org.mockito.listeners.InvocationListener...)
.
-