Hi guys. I need your help on one issue I am having...
# android
f
Hi guys. I need your help on one issue I am having with kotlin and Mockito. Everytime I want to do
Mockito.when(mock.someMethod()).thenReturn(....)
I have to mark the the kotlin
mock.someMethod()
fun with
open
. I do not want to use PowerMockito and the class that holds the
someMethod()
is open too. Could you guys help me on this?