Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit 8538133

Browse files
kunall17niftynei
authored andcommitted
Added Espresso Testing Dependencies
1 parent 2cfeb89 commit 8538133

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

app/build.gradle

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ android {
1313

1414
testApplicationId "com.zulip.android.test"
1515
testInstrumentationRunner "android.test.InstrumentationTestRunner"
16+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1617
}
1718
signingConfigs {
1819
debug {
@@ -53,6 +54,23 @@ dependencies {
5354
compile 'commons-lang:commons-lang:2.6'
5455
compile 'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
5556
compile files('libs/crashlytics.jar')
57+
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2') {
58+
exclude group: 'com.android.support'
59+
}
60+
androidTestCompile('com.android.support.test:runner:0.5') {
61+
exclude group: 'com.android.support'
62+
}
63+
androidTestCompile('com.android.support.test:rules:0.5') {
64+
exclude group: 'com.android.support'
65+
}
66+
androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.2.2') {
67+
exclude group: 'com.android.support'
68+
}
69+
androidTestCompile('com.android.support:support-annotations:23.3.0') {
70+
exclude group: 'com.android.support'
71+
}
72+
73+
testCompile 'junit:junit:4.12'
5674
}
5775

5876
apply plugin: 'com.google.gms.google-services'

0 commit comments

Comments
 (0)