ghedeon
07/19/2018, 2:03 PMval item = slot<Item>()
every { observer.onChanged(capture(item)) } just Runs
...
assert(item.captured.foo).toBe(expectedFoo)
Compared to mockito:
verify(observer).onChanged(argForWhich { foo == expectedFoo })
Is it possible to have it less verbose with Mockk? Somehow in-place, similar to mockito example