Class DefaultMockitoSessionBuilder
- All Implemented Interfaces:
MockitoSessionBuilder
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdds the test class instance for initialization of fields annotated with Mockito annotations likeMock.Adds the test class instances for initialization of fields annotated with Mockito annotations likeMock.logger(MockitoSessionLogger logger) Configures logger used byMockitoSessionfor emitting warnings when finishing the session.Configures the name of theMockitoSessioninstance.Starts new mocking session! Creates newMockitoSessioninstance to initialize the session.strictness(Strictness strictness) Configures strictness ofMockitoSessioninstance.
-
Constructor Details
-
DefaultMockitoSessionBuilder
public DefaultMockitoSessionBuilder()
-
-
Method Details
-
initMocks
Description copied from interface:MockitoSessionBuilderAdds the test class instance for initialization of fields annotated with Mockito annotations likeMock. When this method is invoked it does not perform initialization of mocks on the spot! Only whenMockitoSessionBuilder.startMocking()is invoked then annotated fields will be initialized. Traditional API to initialize mocks, theMockitoAnnotations.openMocks(Object)method has limited support for driving cleaner tests because it does not support configuringStrictness. Want cleaner tests and better productivity? Migrate fromMockitoAnnotations.openMocks(Object)toMockitoSession!This method may be called multiple times to add multiple, e.g. nested, test class instances.
See code sample in
MockitoSession.- Specified by:
initMocksin interfaceMockitoSessionBuilder- Parameters:
testClassInstance- test class instance that contains fields with Mockito annotations to be initialized. Passingnullis permitted but will be ignored.- Returns:
- the same builder instance for fluent configuration of
MockitoSession.
-
initMocks
Description copied from interface:MockitoSessionBuilderAdds the test class instances for initialization of fields annotated with Mockito annotations likeMock.In most scenarios, you only need to init mocks on a single test class instance. This method is useful for advanced framework integrations (like JUnit Jupiter), when a test uses multiple, e.g. nested, test class instances.
This method calls
MockitoSessionBuilder.initMocks(Object)for each passed test class instance.- Specified by:
initMocksin interfaceMockitoSessionBuilder- Parameters:
testClassInstances- test class instances that contains fields with Mockito annotations to be initialized. Passingnullor an empty array is permitted but will be ignored.- Returns:
- the same builder instance for fluent configuration of
MockitoSession. - See Also:
-
name
Description copied from interface:MockitoSessionBuilderConfigures the name of theMockitoSessioninstance.The name is used to output hints when finishing a session.
This method is intended to be used by framework integrations, e.g. JUnit. When building a
MockitoSessionfor direct use, users are not expected to call it.- Specified by:
namein interfaceMockitoSessionBuilder- Parameters:
name- ofMockitoSessioninstance. Passingnullis permitted and will make the session use a default value. The current default is the name of the last test class instance passed toMockitoSessionBuilder.initMocks(Object)orMockitoSessionBuilder.initMocks(Object...), if available; otherwise,"<Unnamed Session>"is used.- Returns:
- the same builder instance for fluent configuration of
MockitoSession. - See Also:
-
strictness
Description copied from interface:MockitoSessionBuilderConfigures strictness ofMockitoSessioninstance. See examples inMockitoSession.- Specified by:
strictnessin interfaceMockitoSessionBuilder- Parameters:
strictness- forMockitoSessioninstance. Passingnullis permitted and will make the session use a default value. The current default isStrictness.STRICT_STUBS.- Returns:
- the same builder instance for fluent configuration of
MockitoSession.
-
logger
Description copied from interface:MockitoSessionBuilderConfigures logger used byMockitoSessionfor emitting warnings when finishing the session.Please note that the use of strict stubs is recommended over emitting warnings because warnings are easily ignored and spoil the log output. Instead of using this method, please consider setting strictness with
MockitoSessionBuilder.strictness(Strictness).- Specified by:
loggerin interfaceMockitoSessionBuilder- Parameters:
logger- for warnings emitted when finishingMockitoSession. Passingnullis permitted and will make the session use a default value. By default, warnings will be logged to the console.- Returns:
- the same builder instance for fluent configuration of
MockitoSession. - See Also:
-
startMocking
Description copied from interface:MockitoSessionBuilderStarts new mocking session! Creates newMockitoSessioninstance to initialize the session. At this point annotated fields are initialized perMockitoSessionBuilder.initMocks(Object)method. When you are done with the session it is required to invokeMockitoSession.finishMocking(). This will trigger stubbing validation, cleaning up the internal state like removal of internal listeners.Mockito tracks created sessions internally and prevents the user from creating new sessions without using
MockitoSession.finishMocking(). When you run tests concurrently in multiple threads, it is legal for each thread to have single active Mockito session. When you attempt to start new session in a thread that already has an unfinished sessionUnfinishedMockingSessionExceptionwill be triggered.See examples in
MockitoSession.- Specified by:
startMockingin interfaceMockitoSessionBuilder- Returns:
- new
MockitoSessioninstance
-