Is there a simple way to let all `vars` work autom...
# mockk
m
Is there a simple way to let all
vars
work automatically on a mockk? Having to specify
Copy code
every{ someClass.someValue = any() } answers { every { someClass.someValue } returns firstArg() }
for every field is a hassle
k
Maybe use a
spyk
instead?