Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/talk-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobiasKaminsky <tobias@kaminsky.me>2021-07-23 17:44:33 +0300
committerTim Krüger <t@timkrueger.me>2021-12-08 18:25:18 +0300
commit5ad48b37572006da6fd22aaedc2dfbd10a91ff14 (patch)
tree4024016d153041cf0b89621376a3932816fa2e23 /app/build.gradle
parentaaa9567c197f676ba609e3306c43aa2d85fe7427 (diff)
initial idea to login in during tests
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 6debe4ff1..0f2d66e87 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -159,6 +159,7 @@ ext {
retrofit2Version = "2.9.0"
workVersion = "2.6.0"
markwonVersion = "4.6.2"
+ espressoVersion = "3.4.0"
}
configurations.all {
@@ -296,6 +297,13 @@ dependencies {
testImplementation "org.powermock:powermock-module-junit4:${powermockVersion}"
testImplementation "org.powermock:powermock-api-mockito2:${powermockVersion}"
+ // Espresso core
+ androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
+ androidTestImplementation "androidx.test.espresso:espresso-contrib:$espressoVersion"
+ androidTestImplementation "androidx.test.espresso:espresso-web:$espressoVersion"
+ androidTestImplementation "androidx.test.espresso:espresso-accessibility:$espressoVersion"
+ androidTestImplementation('com.android.support.test.espresso:espresso-intents:3.0.2')
+
androidTestImplementation ('androidx.test.espresso:espresso-core:3.4.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})