Skip to content

Commit

Permalink
Merge pull request #5 from TeamTroublePainter/feature/DRAW-374
Browse files Browse the repository at this point in the history
DRAW-374 Kotest & Mockk 의존성 설정
  • Loading branch information
SunwoongH authored Oct 14, 2024
2 parents daca649 + 2d808a6 commit e948732
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ subprojects {
dependencies {
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:${Versions.JACKSON}")
implementation("org.springframework.boot:spring-boot-starter-test:${Versions.SPRING_BOOT}")

testImplementation("io.kotest:kotest-runner-junit5:${Versions.KOTEST}")
testImplementation("io.kotest:kotest-assertions-core:${Versions.KOTEST}")

testImplementation("io.mockk:mockk:${Versions.MOCKK}")
}

tasks.test {
Expand Down
2 changes: 2 additions & 0 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ object Versions {
const val MICROMETER = "1.12.9"
const val SENTRY = "7.0.0"
const val FIREBASE = "9.3.0"
const val KOTEST = "6.0.0.M1"
const val MOCKK = "1.13.12"
}

0 comments on commit e948732

Please sign in to comment.