Uses of Interface
org.mockito.plugins.MockMaker.StaticMockControl
-
Packages that use MockMaker.StaticMockControl Package Description org.mockito.internal Internal classes, not to be used by clients.org.mockito.internal.creation.bytebuddy ByteBuddy related stuff.org.mockito.internal.util Static utilsorg.mockito.plugins Mockito plugins allow customization of behavior. -
-
Uses of MockMaker.StaticMockControl in org.mockito.internal
Fields in org.mockito.internal declared as MockMaker.StaticMockControl Modifier and Type Field Description private MockMaker.StaticMockControl<T>
MockedStaticImpl. control
Constructors in org.mockito.internal with parameters of type MockMaker.StaticMockControl Constructor Description MockedStaticImpl(MockMaker.StaticMockControl<T> control)
-
Uses of MockMaker.StaticMockControl in org.mockito.internal.creation.bytebuddy
Classes in org.mockito.internal.creation.bytebuddy that implement MockMaker.StaticMockControl Modifier and Type Class Description private static class
InlineDelegateByteBuddyMockMaker.InlineStaticMockControl<T>
Methods in org.mockito.internal.creation.bytebuddy that return MockMaker.StaticMockControl Modifier and Type Method Description <T> MockMaker.StaticMockControl<T>
ByteBuddyMockMaker. createStaticMock(java.lang.Class<T> type, MockCreationSettings<T> settings, MockHandler handler)
<T> MockMaker.StaticMockControl<T>
InlineByteBuddyMockMaker. createStaticMock(java.lang.Class<T> type, MockCreationSettings<T> settings, MockHandler handler)
<T> MockMaker.StaticMockControl<T>
InlineDelegateByteBuddyMockMaker. createStaticMock(java.lang.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.StaticMockControl Modifier and Type Method Description static <T> MockMaker.StaticMockControl<T>
MockUtil. createStaticMock(java.lang.Class<T> type, MockCreationSettings<T> settings)
-
Uses of MockMaker.StaticMockControl in org.mockito.plugins
Methods in org.mockito.plugins that return MockMaker.StaticMockControl Modifier and Type Method Description default <T> MockMaker.StaticMockControl<T>
MockMaker. createStaticMock(java.lang.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.
-