Last active
September 6, 2024 15:21
-
-
Save krzdabrowski/25c6b74bf4dc36831ccfdddb727aa7f2 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
@Module | |
@TestInstallIn( | |
components = [SingletonComponent::class], | |
replaces = [RocketModule::class] | |
) | |
internal object FakeRocketModule { | |
fun provideFakeGetRocketsUseCase(): GetRocketsUseCase = GetRocketsUseCase { | |
flowOf( | |
Result.success(generateTestRocketsFromDomain()), | |
) | |
} | |
(...) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment