Uses of Package
org.mockito

Packages that use org.mockito
org.mockito Mockito is a mock library for java - see Mockito class for for usage. 
org.mockito.configuration Mockito configuration utilities 
org.mockito.internal Internal classes, not to be used by clients. 
org.mockito.internal.configuration Mockito configuration 
org.mockito.internal.creation Mock object creation. 
org.mockito.internal.debugging Whatever helps in debugging failed tests 
org.mockito.internal.matchers Argument matchers for verification and stubbing. 
org.mockito.internal.matchers.apachecommons Argument matchers that use Apache Commons Lang reflection-equality. 
org.mockito.internal.stubbing.answers Answers for stubbed calls 
org.mockito.internal.util Static utils 
org.mockito.internal.util.reflection reflection utilities 
org.mockito.invocation Public API related to invocation 
org.mockito.mock   
org.mockito.plugins   
 

Classes in org.mockito used by org.mockito
Answers
          Enumeration of pre-configured mock answers
ArgumentCaptor
          Use it to capture argument values for further assertions.
BDDMockito.BDDMyOngoingStubbing
          See original OngoingStubbing
BDDMockito.BDDStubber
          See original Stubber
Incubating
          The annotation conveys following information: The API is fairly new and we would appreciate your feedback.
InOrder
          Allows verification in order.
Matchers
          Allow flexible verification or stubbing.
MockingDetails
          Provides mocking information.
Mockito
          

MockSettings
          Allows mock creation with additional mock settings.
ReturnValues
          Deprecated. Instead, please use Answer interface

In rare cases your code might not compile with recent deprecation & changes. Very sorry for inconvenience but it had to be done in order to keep framework consistent.

Why it is deprecated? ReturnValues is being replaced by Answer for better consistency & interoperability of the framework. Answer interface has been in Mockito for a while and it has the same responsibility as ReturnValues. There's no point in mainting exactly the same interfaces.

Configures return values for an unstubbed invocation

Can be used in Mockito.mock(Class, ReturnValues)

 

Classes in org.mockito used by org.mockito.configuration
ReturnValues
          Deprecated. Instead, please use Answer interface

In rare cases your code might not compile with recent deprecation & changes. Very sorry for inconvenience but it had to be done in order to keep framework consistent.

Why it is deprecated? ReturnValues is being replaced by Answer for better consistency & interoperability of the framework. Answer interface has been in Mockito for a while and it has the same responsibility as ReturnValues. There's no point in mainting exactly the same interfaces.

Configures return values for an unstubbed invocation

Can be used in Mockito.mock(Class, ReturnValues)

 

Classes in org.mockito used by org.mockito.internal
InOrder
          Allows verification in order.
MockingDetails
          Provides mocking information.
MockSettings
          Allows mock creation with additional mock settings.
 

Classes in org.mockito used by org.mockito.internal.configuration
Captor
          Allows shorthand ArgumentCaptor creation on fields.
Mock
          Mark a field as a mock.
MockitoAnnotations.Mock
          Deprecated. 
ReturnValues
          Deprecated. Instead, please use Answer interface

In rare cases your code might not compile with recent deprecation & changes. Very sorry for inconvenience but it had to be done in order to keep framework consistent.

Why it is deprecated? ReturnValues is being replaced by Answer for better consistency & interoperability of the framework. Answer interface has been in Mockito for a while and it has the same responsibility as ReturnValues. There's no point in mainting exactly the same interfaces.

Configures return values for an unstubbed invocation

Can be used in Mockito.mock(Class, ReturnValues)

 

Classes in org.mockito used by org.mockito.internal.creation
MockSettings
          Allows mock creation with additional mock settings.
 

Classes in org.mockito used by org.mockito.internal.debugging
MockitoDebugger
           
 

Classes in org.mockito used by org.mockito.internal.matchers
ArgumentMatcher
          Allows creating customized argument matchers.
 

Classes in org.mockito used by org.mockito.internal.matchers.apachecommons
ArgumentMatcher
          Allows creating customized argument matchers.
 

Classes in org.mockito used by org.mockito.internal.stubbing.answers
ReturnValues
          Deprecated. Instead, please use Answer interface

In rare cases your code might not compile with recent deprecation & changes. Very sorry for inconvenience but it had to be done in order to keep framework consistent.

Why it is deprecated? ReturnValues is being replaced by Answer for better consistency & interoperability of the framework. Answer interface has been in Mockito for a while and it has the same responsibility as ReturnValues. There's no point in mainting exactly the same interfaces.

Configures return values for an unstubbed invocation

Can be used in Mockito.mock(Class, ReturnValues)

 

Classes in org.mockito used by org.mockito.internal.util
MockingDetails
          Provides mocking information.
 

Classes in org.mockito used by org.mockito.internal.util.reflection
Incubating
          The annotation conveys following information: The API is fairly new and we would appreciate your feedback.
 

Classes in org.mockito used by org.mockito.invocation
Incubating
          The annotation conveys following information: The API is fairly new and we would appreciate your feedback.
 

Classes in org.mockito used by org.mockito.mock
Incubating
          The annotation conveys following information: The API is fairly new and we would appreciate your feedback.
 

Classes in org.mockito used by org.mockito.plugins
Incubating
          The annotation conveys following information: The API is fairly new and we would appreciate your feedback.