Add instrumented unit tests for SQLite lists

This commit is contained in:
2016-06-12 07:55:47 -04:00
parent 2b23b36e36
commit 9a44774284
61 changed files with 1196 additions and 670 deletions

View File

@@ -15,6 +15,7 @@ android {
buildConfigField "String", "databaseFilename", "\"uhabits.db\""
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArgument "size", "medium"
}
buildTypes {
@@ -40,7 +41,7 @@ android {
unitTests.all {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
outputs.upToDateWhen {false}
outputs.upToDateWhen { false }
showStandardStreams = true
}
}