Mocking Dependencies in Tests for Selective Method Requirements
Hi, I've a service that has N methods and some of those methods don't require dependencies to run or require just one out of 4 - when mocking in tests should I just provide one and assert the types and just
provideService with {} as RequiredService for others or is there a better way?