我了解如何使用@Mock
注释指定 extraInterface,但是如何创建模拟并添加extraInterfaces
内联?
@SmallTest
@RunWith(MockitoJUnitRunner::class)
class MyTestClass {
@Mock(extraInterfaces = [MyCallback::class])
lateinit var callbackFragment: Fragment
...
}
但是我怎么能在飞行中做到这一点呢?
// this doesn't compile
val callbackFragment = mock<Fragment>(extraInterfaces = [MyCallback::class])
extraInterfaces
在 Kotlin 中添加到 Mockito 模拟的正确语法是什么?