Challenge: Mocking an External Service
Test yourself by applying a mocking configuration.
We'll cover the following...
In this challenge, we’ll use a stub object to substitute the IUserFacade
dependency in the UserDataService
class we want to test. We want to expand our test functionality to verify if the methods under test work with different data and that the expected methods on the ...