Uses of Interface
org.mockito.MockedConstruction.Context
Packages that use MockedConstruction.Context
Package
Description
Mockito is a mock library for java - see
Mockito class for usage.Mockito plugins allow customization of behavior.
-
Uses of MockedConstruction.Context in org.mockito
Methods in org.mockito with parameters of type MockedConstruction.ContextModifier and TypeMethodDescriptionvoidMockedConstruction.MockInitializer.prepare(T mock, MockedConstruction.Context context) Configure the mock.Method parameters in org.mockito with type arguments of type MockedConstruction.ContextModifier and TypeMethodDescriptionstatic <T> MockedConstruction<T> Mockito.mockConstruction(Class<T> classToMock, Function<MockedConstruction.Context, MockSettings> mockSettingsFactory) Creates a thread-local mock controller for all constructions of the given class.static <T> MockedConstruction<T> Mockito.mockConstruction(Class<T> classToMock, Function<MockedConstruction.Context, MockSettings> mockSettingsFactory, MockedConstruction.MockInitializer<T> mockInitializer) Creates a thread-local mock controller for all constructions of the given class. -
Uses of MockedConstruction.Context in org.mockito.plugins
Method parameters in org.mockito.plugins with type arguments of type MockedConstruction.ContextModifier and TypeMethodDescriptiondefault <T> MockMaker.ConstructionMockControl<T> MockMaker.createConstructionMock(Class<T> type, Function<MockedConstruction.Context, MockCreationSettings<T>> settingsFactory, Function<MockedConstruction.Context, MockHandler<T>> handlerFactory, MockedConstruction.MockInitializer<T> mockInitializer) If you want to provide your own implementation ofMockMakerthis 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.