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.
|