Uses of Interface
org.mockito.plugins.MockMaker.StaticMockControl
Packages that use MockMaker.StaticMockControl
Package
Description
Internal classes, not to be used by clients.
ByteBuddy related stuff.
Static utils
Mockito plugins allow customization of behavior.
-
Uses of MockMaker.StaticMockControl in org.mockito.internal
Constructors in org.mockito.internal with parameters of type MockMaker.StaticMockControl -
Uses of MockMaker.StaticMockControl in org.mockito.internal.creation.bytebuddy
Methods in org.mockito.internal.creation.bytebuddy that return MockMaker.StaticMockControlModifier and TypeMethodDescription<T> MockMaker.StaticMockControl
<T> ByteBuddyMockMaker.createStaticMock
(Class<T> type, MockCreationSettings<T> settings, MockHandler handler) <T> MockMaker.StaticMockControl
<T> InlineByteBuddyMockMaker.createStaticMock
(Class<T> type, MockCreationSettings<T> settings, MockHandler handler) -
Uses of MockMaker.StaticMockControl in org.mockito.internal.util
Methods in org.mockito.internal.util that return MockMaker.StaticMockControlModifier and TypeMethodDescriptionstatic <T> MockMaker.StaticMockControl
<T> MockUtil.createStaticMock
(Class<T> type, MockCreationSettings<T> settings) -
Uses of MockMaker.StaticMockControl in org.mockito.plugins
Methods in org.mockito.plugins that return MockMaker.StaticMockControlModifier and TypeMethodDescriptiondefault <T> MockMaker.StaticMockControl
<T> MockMaker.createStaticMock
(Class<T> type, MockCreationSettings<T> settings, MockHandler handler) If you want to provide your own implementation ofMockMaker
this method should: Alter the supplied class to only change its behavior in the current thread. Only alters the static method's behavior after being enabled. Stops the altered behavior when disabled.