Move remaining model tests to JVM; simplify SQLite implementation

This commit is contained in:
2016-06-10 18:54:47 -04:00
parent 78d4f86cab
commit 2b23b36e36
22 changed files with 900 additions and 545 deletions

View File

@@ -35,6 +35,17 @@ android {
targetCompatibility 1.8
sourceCompatibility 1.8
}
testOptions {
unitTests.all {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
outputs.upToDateWhen {false}
showStandardStreams = true
}
}
}
}
dependencies {