interesting.. if you do ``` verifyAll { mock.cal...
# mockk
p
interesting.. if you do
Copy code
verifyAll {
  mock.call(withArg { it.x shouldEqual "5" })
  mock.call(withArg { it.x shouldEqual "6" })
}
then it does not work because it tries to match all calls to the first line.. it does work with
verifySequence
as I expected. I guess assertions do not belong into
withArg
? 🤔