Hello, I have this function ``` fun <T> dumm...
# mockk
c
Hello, I have this function
Copy code
fun <T> dummy(arg: Int, argTwo: T) {
  //do something with argTwo
}
I tried to mock with
mockkStatic(::dummy)
but it said not enough information to infer T, so does anyone knows how can I solve it?
p