<@U0BR3D202>: i tried to mock behaviour using `mo...
# test
d
@nhaarman: i tried to mock behaviour using
mockito-kotlin
and it gets me error in case i do
Copy code
whenever(uploadControllerStorage.get(any<CacheBundle>()))
                    .thenReturn(mutableListOf(photoStateHolderInProgress, photoStateHolderFailed, photoStateHolderDone))
and it works ok if i change from
any<CacheBundle>
to
Mockito.any(CacheBundle::class.java)
exception:
java.lang.ClassCastException: org.mockito.Answers cannot be cast to org.mockito.stubbing.Answer