What is the mockitos `when(service.method()).thenR...
# mockk
g
What is the mockitos
when(service.method()).thenReturn("bar")
analog in mockk?
m
Copy code
every {
    service.method()
} returns "bar"