Created
August 6, 2021 09:09
-
-
Save frootloops/6279f31ec186bb4cd511f0dc992a048d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private class Builder { | |
var priceAlertApiService = PriceAlertApiServiceMock() | |
var priceAlertStorageService = PriceAlertStorageServiceMock() | |
func makeRepository() -> PriceAlertRepository { | |
let repository = PriceAlertRepository( | |
network: priceAlertApiService, | |
storage: priceAlertStorageService | |
) | |
return repository | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment