Hey! I'm having some troubles with `Any` verificat...
# mockk
l
Hey! I'm having some troubles with
Any
verification.
Copy code
test("Should insert the document id as the certificate token") {
            val collection = mockCollection()
            
            target.insert(certificate)
            
            verify { collection.document(certificate.token).set(any()).get() }
        }