test(connector): created JUnit tests for ProjectDatabase

This commit is contained in:
Anthony
2024-04-04 21:45:07 +02:00
parent 3894d6d8b0
commit 8b0ca76ed2
2 changed files with 200 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ val ktorVersion = "2.3.9"
val sqlDelightVersion = "2.0.1"
val dateTimeVersion = "0.5.0"
val sl4jVersion = "2.0.12"
val jupyterVersion = "5.10.1"
kotlin {
jvm()
@@ -28,6 +29,10 @@ kotlin {
implementation("org.slf4j:slf4j-api:$sl4jVersion")
implementation("org.slf4j:slf4j-reload4j:2.0.12")
}
commonTest.dependencies {
implementation(libs.kotlin.test)
implementation("org.junit.jupiter:junit-jupiter:$jupyterVersion")
}
}
}