Hello, is it possible to call a private method whe...
# mockk
j
Hello, is it possible to call a private method when spying an object with answers?
every { obj.method() } answers { mock["privateMethod"](); whatever; }
o
I dont think it is possible because it is not in scope of answers. But I dont remember all the details