android / codelab-android-hilt

Apache License 2.0
350 stars 186 forks source link

Issue in this Codelabs doc 10 UI Testing #1

Closed mengdd closed 4 years ago

mengdd commented 4 years ago

On page: https://codelabs.developers.google.com/codelabs/android-hilt/#9

Currently, in the doc it's written:

android {
    ...
    defaultConfig {
        ...
        testInstrumentationRunner "com.example.android.dagger.CustomTestRunner"
    }
    ...
}

The correct one should be:

testInstrumentationRunner "com.example.android.hilt.CustomTestRunner"

Because the code using package name with hilt, not dagger.

manuelvicnt commented 4 years ago

Thank you for catching that! Already fixed the text in the codelab :) If you refresh, you should be able to see it! Thank you