What are people using for mocking in tests? is Moc...
# multiplatform
d
What are people using for mocking in tests? is MockKMP the best out there?
k
Fakes.
☝️ 5
☝🏼 1
d
Thanks I’ll take a look
m
m
I honestly don’t remember last time I used mocking library. I use it it rare occasions but read blog post above
d
Not a paid medium member 🪦
😞 1
k
The tl:dr is that mocking generally encourages you to test that something is implemented a certain way, while fakes generally encourage you to test that something behaves a certain way. A subtle but important difference.
p
@kevin.cianfarini can you add more abouts you to test that something is implemented a certain way,
k
You shouldn't be tested that something is implemented a certain way. You should be testing that something behaves a certain way.
💯 1
p
thx