Hey how can one mock a static method that has over...
# mockk
a
Hey how can one mock a static method that has overloads? I’m trying to mock and it’s giving me the ambiguity error
e
you can specify types on your matchers, e.g.
any<T>()
💯 1