How is mockk's allAny() used
I can't find any documentation on allAny() that I can understand. The
official documentation describes it as a "special matcher that uses any() instead of eq() for matchers that are provided as simple arguments". I don't understand what that means.
I have a line that goes
every { mockObject.method(any(), any(), any(), any(), any(), any(), any(), any(), any()) } returns 0
I thought allAny() might be able to replace repeated use of...