9

我正在尝试使用带有 Robolectric 的 Dagger Hilt 进行测试:

@RunWith(RobolectricTestRunner::class)
@UninstallModules(LevelModule::class, AppModule::class)
@Config(sdk = [16, 28], application = HiltTestApplication::class)
@LooperMode(LooperMode.Mode.PAUSED)
@HiltAndroidTest
class LevelFragmentTest {

    @get:Rule
    var rule = HiltAndroidRule(this)

    @Test
    fun testShowGameOverWhenTapAMine() {
        launchActivity<GameActivity>().onActivity { activity ->
            ShadowLooper.runUiThreadTasks()
            ...
        }
    }

测试失败,GameActivity.onCreate因为带有 @Inject 的 GameActivity 的所有字段都为空。

游戏活动是:

@AndroidEntryPoint
class GameActivity : AppCompatActivity()

这些模块是:

@Module
@InstallIn(ActivityComponent::class)
open class LevelModule { ... } 
@Module
@InstallIn(ActivityComponent::class)
class TestLevelModule {
@Module
@InstallIn(ApplicationComponent::class)
class AppModule() { ... } 
@Module
@InstallIn(ApplicationComponent::class)
class TestAppModule() { ... } 

当我运行应用程序时它可以工作,但是当我运行测试时,GameActivity它没有被注入。所有字段@Inject为空。

有谁知道它出了什么问题?


如果有用,整个代码和测试都在这里:

  • https://github.com/lucasnlm/antimine-android/pull/95

  • https://github.com/lucasnlm/antimine-android/pull/95/commits/fcc1b3782b8d456898529dd3ba2410ac5f2da6d5

编辑

我不知道为什么,但是这个 PR 上的测试通过了:

4

1 回答 1

1

根据测试指南

您必须更换绑定。在定义测试绑定的测试类中创建一个新模块:

@UninstallModules(AnalyticsModule::class)
@HiltAndroidTest
class SettingsActivityTest {

  @Module
  @InstallIn(ApplicationComponent::class)
  abstract class TestModule {

    @Singleton
    @Binds
    abstract fun bindAnalyticsService(
      analyticsServiceImpl: AnalyticsServiceImpl
    ): AnalyticsService
  }

  ...
}
于 2020-06-17T02:58:19.027 回答