Skip to content

Commit

Permalink
refactor: (#78) mockito kotlin 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
khcho0125 committed Sep 25, 2022
1 parent 7e82c83 commit a29140e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ subprojects {

// test
implementation(Dependencies.SPRING_TEST)
testImplementation(Dependencies.MOCKITO_KOTLIN)
}
}

Expand Down
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ object Dependencies {

// test
const val SPRING_TEST = "org.springframework.boot:spring-boot-starter-test:${PluginVersions.SPRING_BOOT_VERSION}"
const val MOCKITO_KOTLIN = "org.mockito.kotlin:mockito-kotlin:${PluginVersions.MOCKITO_KOTLIN_VERSION}"

// s3 test
const val S3MOCK = "io.findify:s3mock_2.12:${DependencyVersions.S3MOCK}"
Expand Down
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/PluginVersions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ object PluginVersions {
const val JPA_PLUGIN_VERSION = "1.6.21"
const val KAPT_VERSION = "1.7.10"
const val ALLOPEN_VERSION = "1.6.21"
const val MOCKITO_KOTLIN_VERSION = "4.0.0"
}

0 comments on commit a29140e

Please sign in to comment.