android – 在使用Dagger2时创建测试依赖项

前端之家收集整理的这篇文章主要介绍了android – 在使用Dagger2时创建测试依赖项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在阅读匕首2的文档时,在构建应用程序进行测试时,找不到提供依赖关系的简单方法.我发现的唯一线索是:

Dagger 2 doesn’t support overrides. Modules that
override for simple testing fakes can create
a subclass of the module to emulate that behavIoUr.
Modules that use overrides and rely on dependency injection
should be decomposed so that the overridden modules are instead
represented as a choice between two modules.

我不明白如何在Android上设置这样的配置,任何人都可以解释一下?

解决方法

目前,Dagger 2(从v2.0.0开始)没有一些解决方法是不可能的.你可以阅读它 here.

我提出了one workaround,但这需要更改生产代码.

简而言之:

>为@Component提供额外的设置器(例如在Application类中的Android setter中)
>测试组件必须扩展生产组件

有关更多信息,请检查两个链接.希望这个问题将在未来版本的匕首2中得到解决.

原文链接:/android/312876.html

猜你在找的Android相关文章