| fun <T> any(): TMockito matcher that matches anything, including nulls and varargs. | |
| fun <T> eq(value: T): TMockito matcher that matches if the argument is the same as the provided value. | |
| fun <T : Throwable> expectException(clazz: KClass<T>, block: () -> Unit): UnitExpect block to throw an exception. Otherwise fail the test (junit). | |
| fun <T : Any> mock(): TDynamically create a mock object. This method is helpful when creating mocks of classes using generics. |