Standardize (almost) all tests on Truth (#1242)

* Replace assertj calls with Truth where possible

* Update test dependencies

* adapters

* reflect

* codegen

* moshi

* Add missing inOrder()

* Spotless
This commit is contained in:
Zac Sweers
2020-09-26 20:38:39 -04:00
committed by GitHub
parent acb2836d39
commit f192473419
36 changed files with 448 additions and 300 deletions

View File

@@ -49,8 +49,8 @@ object Dependencies {
object Testing {
const val assertj = "org.assertj:assertj-core:3.11.1"
const val compileTesting = "com.github.tschuchortdev:kotlin-compile-testing:1.2.10"
const val junit = "junit:junit:4.12"
const val truth = "com.google.truth:truth:1.0"
const val compileTesting = "com.github.tschuchortdev:kotlin-compile-testing:1.2.11"
const val junit = "junit:junit:4.13"
const val truth = "com.google.truth:truth:1.0.1"
}
}