summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2018-10-21 22:12:07 +0200
committerByteHamster <info@bytehamster.com>2018-10-21 22:12:07 +0200
commit168b41a825c355d4874f7ccb06391395f1486c81 (patch)
tree5d1506aa3f702e497ee33e552ab7671be3469ac0 /app/build.gradle
parent59c2c5b1d6e007ea7fa8260d994d21743a092f73 (diff)
downloadAntennaPod-168b41a825c355d4874f7ccb06391395f1486c81.zip
Updated tests
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle11
1 files changed, 10 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle
index a5cdf8a38..d8602d55e 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -43,7 +43,7 @@ android {
versionCode getMyVersionCode()
versionName "${getMyVersionName()}"
testApplicationId "de.test.antennapod"
- testInstrumentationRunner "de.test.antennapod.AntennaPodTestRunner"
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
generatedDensities = []
}
@@ -120,6 +120,10 @@ android {
additionalParameters "--no-version-vectors"
}
+ testOptions {
+ animationsDisabled = true
+ }
+
flavorDimensions "market"
productFlavors {
free {
@@ -184,6 +188,11 @@ dependencies {
implementation 'com.github.ByteHamster:SearchPreference:v1.0.8'
androidTestImplementation "com.jayway.android.robotium:robotium-solo:$robotiumSoloVersion"
+ androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
+ androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:3.0.2'
+ androidTestImplementation 'com.android.support.test.espresso:espresso-intents:3.0.2'
+ androidTestImplementation 'com.android.support.test:runner:1.0.2'
+ androidTestImplementation 'com.android.support.test:rules:1.0.2'
}
play {