Hey guys, Can anyone guide me what is the difference between
spyk
and
mockk
?
c
christophsturm
11/07/2022, 11:07 AM
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
ephemient
11/07/2022, 11:48 AM
spyk
also allows you to mock specific calls instead, but you should consider creating a proper fake instead of doing that