Maintainance: Move Test outside of regular source codes to avoid confusion. Test srcs are now referenced in build.gradle as own section. Still needs proper goal.

This commit is contained in:
Angelo Fuchs
2019-03-31 10:16:16 +02:00
parent 16a57df9d6
commit 163cd51aec
4 changed files with 4 additions and 1 deletions
+4 -1
View File
@@ -64,7 +64,7 @@ dependencies {
implementation 'com.codewaves.stickyheadergrid:stickyheadergrid:0.9.4' // glues the current time segment text in the gallery to the top.
implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:7.2.0'
implementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:1.7.1'
testImplementation 'org.mockito:mockito-core:1.9.5'
@@ -194,6 +194,9 @@ android {
assets.srcDirs = ['assets']
jniLibs.srcDirs = ['libs']
}
test {
java.srcDirs = ['test']
}
}
lintOptions {