Hey guys, Can anyone guide me what is the differen...
# mockk
k
Hey guys, Can anyone guide me what is the difference between
spyk
and
mockk
?
c
a spy calls the original method, and just records it (it spies on the invocation) a mock does not call the method. most times you want a mock, spying is a very exotic thing
e
spyk
also allows you to mock specific calls instead, but you should consider creating a proper fake instead of doing that
k
perfect guys
thank you guys