`1.` From the previous example: ``` verify { obser...
# mockk
g
1.
From the previous example:
Copy code
verify { observer.onChanged(assert { it == Foo })}
This test will fail if I'd have a sequence of values:
Foo
and
Bar
. And all I want is to test the presence of
Foo
(
Bar
is out of my test scope). Is it possible to ignore the other mock calls?