forked from surfstudio/SurfAndroidStandard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathandroidTestModule.gradle
More file actions
24 lines (22 loc) · 1.28 KB
/
androidTestModule.gradle
File metadata and controls
24 lines (22 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
android {
defaultConfig {
testBuildType "debug"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
}
dependencies {
testImplementation "junit:junit:$junitVersion"
testImplementation "org.powermock:powermock-module-junit4:$powerMockVersion"
testImplementation "org.powermock:powermock-module-junit4-rule:$powerMockVersion"
testImplementation "org.powermock:powermock-api-mockito2:$powerMockVersion"
testImplementation "org.powermock:powermock-classloading-xstream:$powerMockVersion"
kaptTest "com.google.dagger:dagger-compiler:$daggerVersion"
androidTestImplementation "androidx.test:core:$androidxTestVersion"
androidTestImplementation "androidx.test.ext:junit:$androidxTestExtJunitVersion"
androidTestImplementation "androidx.test:runner:$androidXTestRunnerVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidXEspressoCoreVersion"
androidTestImplementation "androidx.test.espresso:espresso-contrib:$androidXEspressoCoreVersion"
androidTestImplementation "androidx.test.espresso:espresso-intents:$androidXEspressoCoreVersion"
androidTestImplementation "androidx.test.uiautomator:uiautomator:$uiAutomatorVersion"
kaptAndroidTest "com.google.dagger:dagger-compiler:$daggerVersion"
}