using mockk for testing kotlin function.
private val serviceObject = mockk<Service>()
private val serviceToBeTested = ServiceToBeTestd(Service)
fun test(){
when(serviceObject.function1(argument1,argument1))
.thenReturn(<something>)
}
When i try to run it, i get this error:
io.mockk.MockKException: no answer found for: Service(#1).function1(argument1, argument2)
Any idea why ?
ServiceToBeTestd is the service to be tested, Service is wired in it:
open class ServiceToBeTestd
constructor(private val service: Service)