Skip to content

Instantly share code, notes, and snippets.

@trietbui85
Last active July 29, 2020 13:40
Show Gist options
  • Save trietbui85/574ef698090802aef83062097821ef8e to your computer and use it in GitHub Desktop.
Save trietbui85/574ef698090802aef83062097821ef8e to your computer and use it in GitHub Desktop.
Unit test Android custom view with AndroidX Test and Robolectric
android {
defaultConfig {
...
}
testOptions {
unitTests.includeAndroidResources = true
}
}
dependencies {
...
testImplementation 'junit:junit:4.12'
testImplementation 'org.robolectric:robolectric:4.3.1'
testImplementation 'androidx.test:core:1.2.0'
testImplementation "com.google.truth:truth:1.0.1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment