Package org.mockito.internal.util
Class DefaultMockingDetails
java.lang.Object
org.mockito.internal.util.DefaultMockingDetails
- All Implemented Interfaces:
MockingDetails
Class to inspect any object, and identify whether a particular object is either a mock or a spy. This is
a wrapper for
MockUtil
.-
Constructor Details
-
DefaultMockingDetails
-
-
Method Details
-
isMock
public boolean isMock()Find out whether the object is a mock.- Specified by:
isMock
in interfaceMockingDetails
- Returns:
- true if the object is a mock or a spy.
-
isSpy
public boolean isSpy()Find out whether the object is a spy.- Specified by:
isSpy
in interfaceMockingDetails
- Returns:
- true if the object is a spy.
-
getInvocations
Description copied from interface:MockingDetails
Provides a collection of methods indicating the invocations of the object- Specified by:
getInvocations
in interfaceMockingDetails
- Returns:
- collection of Invocation representing the invocations for the object.
-