i-5: Introduce fluent assertions in unit tests with assertk #11

Merged
emil merged 2 commits from i-5-add-assertk into main 2025-02-16 02:15:32 +00:00
Showing only changes of commit bcc87b82c4 - Show all commits

View File

@ -1,5 +1,6 @@
val versions = mapOf( val versions = mapOf(
"kotlinx-datetime" to "0.6.2" "kotlinx-datetime" to "0.6.2",
"assertk" to "0.28.1",
) )
plugins { plugins {
@ -35,12 +36,13 @@ kotlin {
} }
commonTest.dependencies { commonTest.dependencies {
implementation(libs.kotlin.test) implementation(libs.kotlin.test)
implementation("com.willowtreeapps.assertk:assertk:${versions["assertk"]}")
} }
} }
} }
android { android {
Re namespace = "org.tle.astrologylibrary" namespace = "org.tle.astrologylibrary"
compileSdk = 35 compileSdk = 35
defaultConfig { defaultConfig {
minSdk = 24 minSdk = 24