does anyone know if `<http://mockk.io|mockk.io>` h...
# mockk
h
does anyone know if
<http://mockk.io|mockk.io>
has an equivalent of this method
any(Class<T> type)
which is from Mockito https://static.javadoc.io/org.mockito/mockito-core/2.11.0/org/mockito/ArgumentMatchers.html. I can't seem to find any equivalent so not sure what to use instead
o
any<T>()
👍 1
h
I tried
any<T>()
but my Intellij just says I can
remove explicit type arguments
so it just become
any()
. is that normal @oleksiyp?
is
any<T>()
the same as
any()
?