forked from fs/android-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-deps.gradle
20 lines (20 loc) · 931 Bytes
/
test-deps.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ext {
versions = [
support : '27.0.1',
espressoVersion: '2.2.2'
]
unitTests = [
supportAnnotation: "com.android.support:support-annotations:$versions.support",
junit : 'junit:junit:4.12',
assertj : 'com.squareup.assertj:assertj-android:1.0.0'
]
androidTests = [
espressoCore : "com.android.support.test.espresso:espresso-core:$versions.espressoVersion",
espressoContrib: "com.android.support.test.espresso:espresso-contrib:$versions.espressoVersion",
espressoIntents: "com.android.support.test.espresso:espresso-intents:$versions.espressoVersion",
testRunner : "com.android.support.test:runner:0.5",
testRules : "com.android.support.test:rules:0.5"
]
unitTestLibs = unitTests.values()
androidTestsLibs = androidTests.values() + supportLibs
}