1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-28 18:49:56 +02:00

Add support for writing unit tests

This commit is contained in:
Erik Johansson
2017-12-29 22:16:52 +01:00
parent 7ce5fd23a4
commit 90f4d9701b
2 changed files with 3 additions and 1 deletions

View File

@@ -23,4 +23,4 @@ after_success:
- chmod +x ./upload_apk.sh
- ./upload_apk.sh
script: cd android_app && ./gradlew assembleDebug
script: cd android_app && ./gradlew -i testDebugUnitTest assembleDebug

View File

@@ -31,4 +31,6 @@ dependencies {
compile "com.android.support:support-v4:${supportLibVersion}"
compile "com.android.support:appcompat-v7:${supportLibVersion}"
compile 'com.github.lecho:hellocharts-library:1.5.8@aar'
testCompile 'junit:junit:4.12'
}