Uses of Interface
org.mockito.plugins.MockMaker
-
Packages that use MockMaker Package Description org.mockito.internal.configuration.plugins Mockito plugins configuration machinery.org.mockito.internal.creation.bytebuddy ByteBuddy related stuff.org.mockito.internal.creation.proxy Mock makers based on theProxy
utility.org.mockito.internal.util Static utilsorg.mockito.plugins Mockito plugins allow customization of behavior. -
-
Uses of MockMaker in org.mockito.internal.configuration.plugins
Fields in org.mockito.internal.configuration.plugins declared as MockMaker Modifier and Type Field Description private MockMaker
PluginRegistry. mockMaker
Methods in org.mockito.internal.configuration.plugins that return MockMaker Modifier and Type Method Description MockMaker
DefaultMockitoPlugins. getInlineMockMaker()
(package private) MockMaker
PluginRegistry. getMockMaker()
Returns the implementation of the mock maker available for the current runtime.static MockMaker
Plugins. getMockMaker()
Returns the implementation of the mock maker available for the current runtime. -
Uses of MockMaker in org.mockito.internal.creation.bytebuddy
Subinterfaces of MockMaker in org.mockito.internal.creation.bytebuddy Modifier and Type Interface Description (package private) interface
ClassCreatingMockMaker
Classes in org.mockito.internal.creation.bytebuddy that implement MockMaker Modifier and Type Class Description class
ByteBuddyMockMaker
ByteBuddy MockMaker.class
InlineByteBuddyMockMaker
(package private) class
InlineDelegateByteBuddyMockMaker
Agent and subclass based mock maker.class
SubclassByteBuddyMockMaker
Subclass based mock maker. -
Uses of MockMaker in org.mockito.internal.creation.proxy
Classes in org.mockito.internal.creation.proxy that implement MockMaker Modifier and Type Class Description class
ProxyMockMaker
A mock maker that is using theProxy
utility and is therefore only capable of mocking interfaces but does not rely on manual byte code generation but only uses official and public Java API. -
Uses of MockMaker in org.mockito.internal.util
Fields in org.mockito.internal.util declared as MockMaker Modifier and Type Field Description private static MockMaker
MockUtil. mockMaker
-
Uses of MockMaker in org.mockito.plugins
Subinterfaces of MockMaker in org.mockito.plugins Modifier and Type Interface Description interface
InlineMockMaker
Extension toMockMaker
for mock makers that changes inline method implementations and need keep track of created mock objects.Methods in org.mockito.plugins that return MockMaker Modifier and Type Method Description MockMaker
MockitoPlugins. getInlineMockMaker()
Returns inline mock maker, an optional mock maker that is bundled with Mockito distribution.
-