Guys, is it possible to somehow unit-test extensio...
# announcements
a
Guys, is it possible to somehow unit-test extension functions? Like, if I have
Copy code
fun MyClass.myfunction() {
  //do stuff
}
and MyClass is a dependency that I mock with PowerMock, how can I ensure that
myfunction
is called on
MyClass
instance?