mirror of
https://github.com/samsonjs/media.git
synced 2026-04-11 12:15:47 +00:00
Use androidx test runner in gradle configuration
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=203141421
This commit is contained in:
parent
f2b01275cb
commit
930833627f
2 changed files with 4 additions and 5 deletions
|
|
@ -33,7 +33,7 @@ project.ext {
|
|||
robolectricVersion = '3.7.1'
|
||||
autoValueVersion = '1.6'
|
||||
checkerframeworkVersion = '2.5.0'
|
||||
testRunnerVersion = '1.0.2'
|
||||
testRunnerVersion = '1.1.0-alpha3'
|
||||
modulePrefix = ':'
|
||||
if (gradle.ext.has('exoplayerModulePrefix')) {
|
||||
modulePrefix += gradle.ext.exoplayerModulePrefix
|
||||
|
|
|
|||
|
|
@ -64,16 +64,15 @@ dependencies {
|
|||
androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:' + dexmakerVersion
|
||||
androidTestImplementation 'com.google.truth:truth:' + truthVersion
|
||||
androidTestImplementation 'org.mockito:mockito-core:' + mockitoVersion
|
||||
androidTestImplementation 'com.android.support.test:runner:' + testRunnerVersion
|
||||
androidTestUtil 'com.android.support.test:orchestrator:' + testRunnerVersion
|
||||
androidTestImplementation 'androidx.test:runner:' + testRunnerVersion
|
||||
androidTestImplementation 'com.google.auto.value:auto-value-annotations:' + autoValueVersion
|
||||
androidTestAnnotationProcessor 'com.google.auto.value:auto-value:' + autoValueVersion
|
||||
testImplementation 'com.google.truth:truth:' + truthVersion
|
||||
testImplementation 'junit:junit:' + junitVersion
|
||||
testImplementation 'org.mockito:mockito-core:' + mockitoVersion
|
||||
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
|
||||
testImplementation 'com.google.auto.value:auto-value-annotations:' + autoValueVersion
|
||||
testAnnotationProcessor 'com.google.auto.value:auto-value:' + autoValueVersion
|
||||
androidTestImplementation 'com.google.auto.value:auto-value-annotations:' + autoValueVersion
|
||||
androidTestAnnotationProcessor 'com.google.auto.value:auto-value:' + autoValueVersion
|
||||
}
|
||||
|
||||
ext {
|
||||
|
|
|
|||
Loading…
Reference in a new issue