hey guys, what's the difference between: ``` veri...
# mockk
p
hey guys, what's the difference between:
Copy code
verify {
  mock.call(param1)
  mock.call(param2)
}
and
Copy code
verifyAll {
  mock.call(param1)
  mock.call(param2)
}
?