Last active
August 21, 2019 09:55
-
-
Save vincent-paing/cb6246f50ec77cfd4fe570acd1cc5dae 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(includes = [TestImageLoaderModule.Provider::class]) | |
abstract class TestImageLoaderModule { | |
@Module | |
object Provider { | |
@Provides @JvmStatic @Singleton fun imageLoader(): ImageLoader { | |
return mock() | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment