Skip to content

Instantly share code, notes, and snippets.

@vincent-paing
Last active August 21, 2019 09:55
Show Gist options
  • Save vincent-paing/cb6246f50ec77cfd4fe570acd1cc5dae to your computer and use it in GitHub Desktop.
Save vincent-paing/cb6246f50ec77cfd4fe570acd1cc5dae to your computer and use it in GitHub Desktop.
@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