Uses of Interface
org.mockito.MockedConstruction.MockInitializer
-
Packages that use MockedConstruction.MockInitializer Package Description org.mockito Mockito is a mock library for java - seeMockito
class for usage.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 MockedConstruction.MockInitializer in org.mockito
Methods in org.mockito with parameters of type MockedConstruction.MockInitializer Modifier and Type Method Description static <T> MockedConstruction<T>
Mockito. mockConstruction(java.lang.Class<T> classToMock, java.util.function.Function<MockedConstruction.Context,MockSettings> mockSettingsFactory, MockedConstruction.MockInitializer<T> mockInitializer)
Creates a thread-local mock controller for all constructions of the given class.static <T> MockedConstruction<T>
Mockito. mockConstruction(java.lang.Class<T> classToMock, MockedConstruction.MockInitializer<T> mockInitializer)
Creates a thread-local mock controller for all constructions of the given class.static <T> MockedConstruction<T>
Mockito. mockConstruction(java.lang.Class<T> classToMock, MockSettings mockSettings, MockedConstruction.MockInitializer<T> mockInitializer)
Creates a thread-local mock controller for all constructions of the given class. -
Uses of MockedConstruction.MockInitializer in org.mockito.internal
Methods in org.mockito.internal with parameters of type MockedConstruction.MockInitializer Modifier and Type Method Description <T> MockedConstruction<T>
MockitoCore. mockConstruction(java.lang.Class<T> typeToMock, java.util.function.Function<MockedConstruction.Context,? extends MockSettings> settingsFactory, MockedConstruction.MockInitializer<T> mockInitializer)
-
Uses of MockedConstruction.MockInitializer in org.mockito.internal.creation.bytebuddy
Fields in org.mockito.internal.creation.bytebuddy declared as MockedConstruction.MockInitializer Modifier and Type Field Description private MockedConstruction.MockInitializer<T>
InlineDelegateByteBuddyMockMaker.InlineConstructionMockControl. mockInitializer
Methods in org.mockito.internal.creation.bytebuddy with parameters of type MockedConstruction.MockInitializer Modifier and Type Method Description <T> MockMaker.ConstructionMockControl<T>
ByteBuddyMockMaker. createConstructionMock(java.lang.Class<T> type, java.util.function.Function<MockedConstruction.Context,MockCreationSettings<T>> settingsFactory, java.util.function.Function<MockedConstruction.Context,MockHandler<T>> handlerFactory, MockedConstruction.MockInitializer<T> mockInitializer)
<T> MockMaker.ConstructionMockControl<T>
InlineByteBuddyMockMaker. createConstructionMock(java.lang.Class<T> type, java.util.function.Function<MockedConstruction.Context,MockCreationSettings<T>> settingsFactory, java.util.function.Function<MockedConstruction.Context,MockHandler<T>> handlerFactory, MockedConstruction.MockInitializer<T> mockInitializer)
<T> MockMaker.ConstructionMockControl<T>
InlineDelegateByteBuddyMockMaker. createConstructionMock(java.lang.Class<T> type, java.util.function.Function<MockedConstruction.Context,MockCreationSettings<T>> settingsFactory, java.util.function.Function<MockedConstruction.Context,MockHandler<T>> handlerFactory, MockedConstruction.MockInitializer<T> mockInitializer)
Constructors in org.mockito.internal.creation.bytebuddy with parameters of type MockedConstruction.MockInitializer Constructor Description InlineConstructionMockControl(java.lang.Class<T> type, java.util.function.Function<MockedConstruction.Context,MockCreationSettings<T>> settingsFactory, java.util.function.Function<MockedConstruction.Context,MockHandler<T>> handlerFactory, MockedConstruction.MockInitializer<T> mockInitializer, java.util.Map<java.lang.Class<?>,java.util.function.BiConsumer<java.lang.Object,MockedConstruction.Context>> interceptors)
-
Uses of MockedConstruction.MockInitializer in org.mockito.internal.util
Methods in org.mockito.internal.util with parameters of type MockedConstruction.MockInitializer Modifier and Type Method Description static <T> MockMaker.ConstructionMockControl<T>
MockUtil. createConstructionMock(java.lang.Class<T> type, java.util.function.Function<MockedConstruction.Context,MockCreationSettings<T>> settingsFactory, MockedConstruction.MockInitializer<T> mockInitializer)
-
Uses of MockedConstruction.MockInitializer in org.mockito.plugins
Methods in org.mockito.plugins with parameters of type MockedConstruction.MockInitializer Modifier and Type Method Description default <T> MockMaker.ConstructionMockControl<T>
MockMaker. createConstructionMock(java.lang.Class<T> type, java.util.function.Function<MockedConstruction.Context,MockCreationSettings<T>> settingsFactory, java.util.function.Function<MockedConstruction.Context,MockHandler<T>> handlerFactory, MockedConstruction.MockInitializer<T> mockInitializer)
If you want to provide your own implementation ofMockMaker
this method should: Intercept all constructions of the specified type in the current thread Only intercept the construction after being enabled. Stops the interception when disabled.
-