<@U0BFDUP0E> have you tried to mock kotlin propert...
# android
d
@jw have you tried to mock kotlin property using Mockito? for me it works only like this
Copy code
open class Pin(@JvmField val pin: String?) : Indexable {
    open fun getPin(): String? {
        return pin
    }