poohbar
01/31/2019, 4:34 PMverifyAll {
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
? 🤔