Lets say I have a UserRepository Effect.Service with 20 or so methods on it. My Http API route calls just one method of that repository service, how can I mock/spy on a service method to assert that it was called with specific arguments. I care less about the return value since the service is already tested and care more that the function was called as intended. Or if I can just create a single mocked class with spies all attached.
is this possible?