Hey guys, how can I return the same `Intent` here, without creating a new `mockk()` ? ```mockkConstr...
d
Hey guys, how can I return the same
Intent
here, without creating a new
mockk()
?
Copy code
mockkConstructor(Intent::class) {
  every { 
    anyConstructed<Intent>().setDataAndType(any(), any())
  } answers { 
    TODO("return same Intent") 
  }
}
e
self
d
Figured it out, thanks