mockitokotlin2 中特定 class 的任何对象的匹配器是什么?

What is the matcher of any object of particular class in mockitokotlin2?

mockitokotlin2 中有 any(),但它是任何对象。我需要一个 MyClass 的任何对象的匹配器,比如 org.mockito.Matchers.any(MyClass::class.java)

可能吗?

mockito-kotlin 中,您可以将类型指定为 any 的类型参数:

org.mockito.kotlin.any<MyClass>()