Index

A B C D E F G H I J L M N O P R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

M

0.1. Mockito Android support - Search tag in class org.mockito.Mockito
Section
0. Migrating to Mockito 2 - Search tag in class org.mockito.Mockito
Section
2.1.0 migration guide - Search tag in interface org.mockito.ArgumentMatcher
Section
26. Mocking details (Improved in 2.2.x) - Search tag in class org.mockito.Mockito
Section
28. MockMaker API (Since 1.9.5) - Search tag in class org.mockito.Mockito
Section
31. Mockito mocks can be serialized / deserialized across classloaders (Since 1.10.0) - Search tag in class org.mockito.Mockito
Section
33. Mockito JUnit rule (Since 1.10.17) - Search tag in class org.mockito.Mockito
Section
38. Meta data and generic type retention (Since 2.1.0) - Search tag in class org.mockito.Mockito
Section
39. Mocking final types, enums and final methods (Since 2.1.0) - Search tag in class org.mockito.Mockito
Section
48. Mocking static methods (since 3.4.0) - Search tag in class org.mockito.Mockito
Section
49. Mocking object construction (since 3.5.0) - Search tag in class org.mockito.Mockito
Section
51. Mark classes as unmockable (since 4.1.0) - Search tag in class org.mockito.Mockito
Section
54. Mocking/spying without specifying class (Since 4.10.0) - Search tag in class org.mockito.Mockito
Section
7. Making sure interaction(s) never happened on mock - Search tag in class org.mockito.Mockito
Section
markStubbed(StubInfo) - Method in interface org.mockito.invocation.Invocation
Marks this invocation as stubbed.
markVerified() - Method in interface org.mockito.invocation.Invocation
Marks this invocation as verified so that it will not cause verification error at Mockito.verifyNoMoreInteractions(Object...)
MatchableInvocation - Interface in org.mockito.invocation
MatchableInvocation wraps Invocation instance and holds argument matchers associated with that invocation.
matches(String) - Static method in class org.mockito.ArgumentMatchers
String argument that matches the given regular expression.
matches(Pattern) - Static method in class org.mockito.ArgumentMatchers
Pattern argument that matches the given regular expression.
matches(Invocation) - Method in interface org.mockito.invocation.MatchableInvocation
Same method, mock and all arguments match.
matches(T) - Method in interface org.mockito.ArgumentMatcher
Informs if this matcher accepts the given argument.
maybeVerifyLazily(VerificationMode) - Method in interface org.mockito.verification.VerificationStrategy
Possibly wrap the given VerificationMode and return a wrapping VerificationMode instead.
MemberAccessor - Interface in org.mockito.plugins
A member accessor is responsible for invoking methods, constructors and for setting and reading field values.
MemberAccessor.ConstructionDispatcher - Interface in org.mockito.plugins
 
MemberAccessor.OnConstruction - Interface in org.mockito.plugins
 
MethodInvocationReport - Interface in org.mockito.listeners
Represent a method call on a mock.
MissingMethodInvocationException - Exception Class in org.mockito.exceptions.misusing
 
MissingMethodInvocationException(String) - Constructor for exception class org.mockito.exceptions.misusing.MissingMethodInvocationException
 
mock(Class<T>) - Static method in class org.mockito.Mockito
Creates mock object of given class or interface.
mock(Class<T>, String) - Static method in class org.mockito.Mockito
Specifies mock name.
mock(Class<T>, MockSettings) - Static method in class org.mockito.Mockito
Creates a mock with some non-standard settings.
mock(Class<T>, Answer) - Static method in class org.mockito.Mockito
Creates mock with a specified strategy for its answers to interactions.
mock(String, T...) - Static method in class org.mockito.Mockito
Creates a mock object of the requested class or interface with the given name.
mock(MockSettings, T...) - Static method in class org.mockito.Mockito
Creates a mock object of the requested class or interface with the given settings.
mock(Answer, T...) - Static method in class org.mockito.Mockito
Creates a mock object of the requested class or interface with the given default answer.
mock(T...) - Static method in class org.mockito.Mockito
Creates a mock object of the requested class or interface.
Mock - Annotation Type in org.mockito
Mark a field as a mock.
Mock.Strictness - Enum in org.mockito
 
mockable() - Method in interface org.mockito.plugins.MockMaker.TypeMockability
informs if type is mockable
mockConstruction(Class<T>) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all constructions of the given class.
mockConstruction(Class<T>, Function<MockedConstruction.Context, MockSettings>) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all constructions of the given class.
mockConstruction(Class<T>, Function<MockedConstruction.Context, MockSettings>, MockedConstruction.MockInitializer<T>) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all constructions of the given class.
mockConstruction(Class<T>, MockedConstruction.MockInitializer<T>) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all constructions of the given class.
mockConstruction(Class<T>, MockSettings) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all constructions of the given class.
mockConstruction(Class<T>, MockSettings, MockedConstruction.MockInitializer<T>) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all constructions of the given class.
mockConstructionWithAnswer(Class<T>, Answer, Answer...) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all constructions of the given class.
MockCreationListener - Interface in org.mockito.listeners
Notified when mock object is created.
MockCreationSettings<T> - Interface in org.mockito.mock
Informs about the mock settings.
MockedConstruction<T> - Interface in org.mockito
Represents a mock of any object construction of the represented type.
MockedConstruction.Context - Interface in org.mockito
The context for a construction mock.
MockedConstruction.MockInitializer<T> - Interface in org.mockito
Functional interface that consumes a newly created mock and the mock context.
MockedStatic<T> - Interface in org.mockito
Represents an active mock of a type's static methods.
MockedStatic.Verification - Interface in org.mockito
Functional interface for a verification operation on a static mock.
MockHandler<T> - Interface in org.mockito.invocation
Mockito handler of an invocation on a mock.
mockingDetails(Object) - Static method in class org.mockito.Mockito
Returns a MockingDetails instance that enables inspecting a particular object for Mockito related information.
MockingDetails - Interface in org.mockito
Provides mocking information.
Mockito - Class in org.mockito
Mockito logo
Mockito() - Constructor for class org.mockito.Mockito
 
MockitoAnnotations - Class in org.mockito
MockitoAnnotations.openMocks(this); initializes fields annotated with Mockito annotations.
MockitoAssertionError - Exception Class in org.mockito.exceptions.base
Base class for verification errors emitted by Mockito.
MockitoAssertionError(AssertionError, String) - Constructor for exception class org.mockito.exceptions.base.MockitoAssertionError
Creates a copy of the given assertion error with the custom failure message prepended.
MockitoAssertionError(String) - Constructor for exception class org.mockito.exceptions.base.MockitoAssertionError
 
MockitoAssertionError(MockitoAssertionError, String) - Constructor for exception class org.mockito.exceptions.base.MockitoAssertionError
Creates a copy of the given assertion error with the custom failure message prepended.
MockitoConfigurationException - Exception Class in org.mockito.exceptions.misusing
 
MockitoConfigurationException(String) - Constructor for exception class org.mockito.exceptions.misusing.MockitoConfigurationException
 
MockitoConfigurationException(String, Exception) - Constructor for exception class org.mockito.exceptions.misusing.MockitoConfigurationException
 
MockitoException - Exception Class in org.mockito.exceptions.base
Raised by mockito to emit an error either due to Mockito, or due to the User.
MockitoException(String) - Constructor for exception class org.mockito.exceptions.base.MockitoException
 
MockitoException(String, Throwable) - Constructor for exception class org.mockito.exceptions.base.MockitoException
 
MockitoFramework - Interface in org.mockito
Mockito framework settings and lifecycle listeners, for advanced users or for integrating with other frameworks.
MockitoHamcrest - Class in org.mockito.hamcrest
Allows matching arguments with hamcrest matchers.
MockitoHint - Interface in org.mockito.quality
Stubbing hints were introduced in Mockito 2 in order to improve debuggability while keeping backwards compatibility.
MockitoInitializationException - Exception Class in org.mockito.exceptions.base
 
MockitoInitializationException(String) - Constructor for exception class org.mockito.exceptions.base.MockitoInitializationException
 
MockitoInitializationException(String, Throwable) - Constructor for exception class org.mockito.exceptions.base.MockitoInitializationException
 
MockitoJUnit - Class in org.mockito.junit
Mockito supports JUnit via: JUnit Rules - see MockitoRule JUnit runners - see MockitoJUnitRunner JUnit Jupiter extension
MockitoJUnitRunner - Class in org.mockito.junit
Mockito JUnit Runner keeps tests clean and improves debugging experience.
MockitoJUnitRunner(Class<?>) - Constructor for class org.mockito.junit.MockitoJUnitRunner
 
MockitoJUnitRunner.Silent - Class in org.mockito.junit
This Mockito JUnit Runner implementation *ignores* stubbing argument mismatches (MockitoJUnitRunner.StrictStubs) and *does not detect* unused stubbings.
MockitoJUnitRunner.Strict - Class in org.mockito.junit
Detects unused stubs and reports them as failures.
MockitoJUnitRunner.StrictStubs - Class in org.mockito.junit
Improves debugging tests, helps keeping the tests clean.
MockitoListener - Interface in org.mockito.listeners
Marker interface for all types of Mockito listeners.
MockitoLogger - Interface in org.mockito.plugins
Mockito logger.
MockitoPlugins - Interface in org.mockito.plugins
Instance of this interface is available via MockitoFramework.getPlugins().
MockitoRule - Interface in org.mockito.junit
Mockito JUnit Rule helps keeping tests clean.
MockitoSerializationIssue - Exception Class in org.mockito.exceptions.base
Raised by mockito to emit an error either due to Mockito, or due to the User.
MockitoSerializationIssue(String, Exception) - Constructor for exception class org.mockito.exceptions.base.MockitoSerializationIssue
 
mockitoSession() - Static method in class org.mockito.Mockito
MockitoSession is an optional, highly recommended feature that drives writing cleaner tests by eliminating boilerplate code and adding extra validation.
MockitoSession - Interface in org.mockito
MockitoSession is an optional, highly recommended feature that drives writing cleaner tests by eliminating boilerplate code and adding extra validation.
MockitoSessionBuilder - Interface in org.mockito.session
Fluent builder interface for MockitoSession objects.
MockitoSessionLogger - Interface in org.mockito.session
Logger for hints emitted when finishing mocking for a MockitoSession.
MockitoTestRule - Interface in org.mockito.junit
Equivalent to MockitoRule, but inherits a different JUnit4 base interface TestRule.
mockMaker() - Element in annotation type org.mockito.Mock
Mock will be created by the given MockMaker, see MockSettings.mockMaker(String).
mockMaker(String) - Method in interface org.mockito.MockSettings
Specifies the MockMaker for the mock.
MockMaker - Interface in org.mockito.plugins
The facility to create mocks.
MockMaker.ConstructionMockControl<T> - Interface in org.mockito.plugins
 
MockMaker.StaticMockControl<T> - Interface in org.mockito.plugins
 
MockMaker.TypeMockability - Interface in org.mockito.plugins
Carries the mockability information
MockMakers - Class in org.mockito
Constants for built-in implementations of MockMaker.
MockName - Interface in org.mockito.mock
Represents the name of the mock as shown in the verification failure reports, etc.
MockResolver - Interface in org.mockito.plugins
A mock resolver offers an opportunity to resolve a mock from any instance that is provided to the Mockito-DSL.
MockSettings - Interface in org.mockito
Allows mock creation with additional mock settings.
mockStatic(Class<T>) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all static methods of the given class or interface.
mockStatic(Class<T>, String) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all static methods of the given class or interface.
mockStatic(Class<T>, MockSettings) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all static methods of the given class or interface.
mockStatic(Class<T>, Answer) - Static method in class org.mockito.Mockito
Creates a thread-local mock controller for all static methods of the given class or interface.
MockType - Enum in org.mockito.mock
The type of mock being created
MoreThanAllowedActualInvocations - Exception Class in org.mockito.exceptions.verification
Thrown when atMost(x) verification fails.
MoreThanAllowedActualInvocations(String) - Constructor for exception class org.mockito.exceptions.verification.MoreThanAllowedActualInvocations
 
A B C D E F G H I J L M N O P R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form