在这个例子中,我找不到存根 barFunction 的方法。
interface Foo {
fun run()
}
class MockedService {
fun <T : Foo> barFunction(myClass: KClass<T>): String {
// doSomething with myClass
return myClass.java.name
}
}
private val mockedService: MockedService = mock()
@BeforeEach
fun setup() {
whenever(mockedService.barFunction(any())).thenReturn("Hello")
}
Kotlin 编译器说:
Cannot infer type parameter T in inline fun <reified T : Any> any(): T
None of the following substitutions
()
()
can be applied to
()
我怎样才能找到一种以通用方式存根此方法的方法?