Uses of Interface
org.mockito.MockedStatic
-
Packages that use MockedStatic Package Description org.mockito Mockito is a mock library for java - seeMockito
class for usage.org.mockito.internal Internal classes, not to be used by clients. -
-
Uses of MockedStatic in org.mockito
Methods in org.mockito that return MockedStatic Modifier and Type Method Description static <T> MockedStatic<T>
Mockito. mockStatic(java.lang.Class<T> classToMock)
Creates a thread-local mock controller for all static methods of the given class or interface.static <T> MockedStatic<T>
Mockito. mockStatic(java.lang.Class<T> classToMock, java.lang.String name)
Creates a thread-local mock controller for all static methods of the given class or interface.static <T> MockedStatic<T>
Mockito. mockStatic(java.lang.Class<T> classToMock, MockSettings mockSettings)
Creates a thread-local mock controller for all static methods of the given class or interface.static <T> MockedStatic<T>
Mockito. mockStatic(java.lang.Class<T> classToMock, Answer defaultAnswer)
Creates a thread-local mock controller for all static methods of the given class or interface. -
Uses of MockedStatic in org.mockito.internal
Classes in org.mockito.internal that implement MockedStatic Modifier and Type Class Description class
MockedStaticImpl<T>
Methods in org.mockito.internal that return MockedStatic Modifier and Type Method Description <T> MockedStatic<T>
MockitoCore. mockStatic(java.lang.Class<T> classToMock, MockSettings settings)
-