Merge pull request #8723 from nextcloud/dependabot/gradle/androidx.test-runner-1.4.0

Bump runner from 1.3.0 to 1.4.0
This commit is contained in:
Andy Scherzinger 2021-07-17 23:55:20 +02:00 committed by GitHub
commit 240c1b5003
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,6 +56,7 @@ configurations {
} }
ext { ext {
androidxTestVersion = "1.4.0"
daggerVersion = "2.36" daggerVersion = "2.36"
markwonVersion = "4.6.2" markwonVersion = "4.6.2"
prismVersion = "2.0.0" prismVersion = "2.0.0"
@ -341,7 +342,7 @@ dependencies {
// dependencies for local unit tests // dependencies for local unit tests
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
testImplementation "org.mockito:mockito-core:$mockitoVersion" testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation 'androidx.test:core:1.4.0' testImplementation "androidx.test:core:$androidxTestVersion"
testImplementation "org.powermock:powermock-core:$powermockVersion" testImplementation "org.powermock:powermock-core:$powermockVersion"
testImplementation "org.powermock:powermock-module-junit4:$powermockVersion" testImplementation "org.powermock:powermock-module-junit4:$powermockVersion"
testImplementation "org.powermock:powermock-api-mockito2:$powermockVersion" testImplementation "org.powermock:powermock-api-mockito2:$powermockVersion"
@ -354,10 +355,10 @@ dependencies {
// dependencies for instrumented tests // dependencies for instrumented tests
// JUnit4 Rules // JUnit4 Rules
androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test:rules:1.4.0' androidTestImplementation "androidx.test:rules:$androidxTestVersion"
// Android JUnit Runner // Android JUnit Runner
androidTestImplementation 'androidx.test:runner:1.3.0' androidTestImplementation "androidx.test:runner:$androidxTestVersion"
androidTestUtil 'androidx.test:orchestrator:1.4.0' androidTestUtil "androidx.test:orchestrator:$androidxTestVersion"
// Espresso core // Espresso core
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion" androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"