5

使用RobolectricDagger Hilt启动片段时,不会在片段中注入后期初始化字段。

我有以下测试:

@RunWith(RobolectricTestRunner::class)
@HiltAndroidTest
@Config(application = HiltTestApplication::class)
class SampleTest {

    @Test
    fun checkFragmentProperty() {
        launchFragmentInHiltContainer<TestFragment> {
            // nothing
        }
    }
}

我的 TestFragment 看起来像这样:

@AndroidEntryPoint
class TestFragment : Fragment() {

    @Inject
    lateinit var testClass: TestClass

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        testClass.some()
    }
}

当我尝试运行此测试时,它会显示错误kotlin.UninitializedPropertyAccessException: lateinit property testClass has not been initialized

我使用官方文档launchFragmentInHiltContainer中的方法,但是当我只使用.lunchFragmentInContainerandroidx.fragment.app.testing

当我使用模拟器而不是 Robolectric 时,字段被正确注入。

我试图添加:

hilt {
    enableTransformForLocalTests = true
}

并从控制台运行测试,但测试仍然失败

4

0 回答 0