From a557710d6e756d09bf509024a09b46eaf1bc2d42 Mon Sep 17 00:00:00 2001 From: anjeongkyun Date: Mon, 2 Oct 2023 16:51:02 +0900 Subject: [PATCH] =?UTF-8?q?unit=20test=20module=EC=95=A0=20=EC=9E=88?= =?UTF-8?q?=EB=8A=94=20=ED=8C=8C=EC=9D=BC=EB=93=A4=EC=9D=98=20=EC=9C=84?= =?UTF-8?q?=EC=B9=98=EB=A5=BC=20kotlin=20=ED=8F=B4=EB=8D=94=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- unit-test/build.gradle.kts | 1 - .../test/{java => kotlin}/org/tagwonder/TestRepositoryContext.kt | 0 .../org/tagwonder/executors/SpecsCreateTagsCommandExecutor.kt | 0 .../org/tagwonder/processors/SpecsGetTagsQueryProcessor.kt | 0 4 files changed, 1 deletion(-) rename unit-test/src/test/{java => kotlin}/org/tagwonder/TestRepositoryContext.kt (100%) rename unit-test/src/test/{java => kotlin}/org/tagwonder/executors/SpecsCreateTagsCommandExecutor.kt (100%) rename unit-test/src/test/{java => kotlin}/org/tagwonder/processors/SpecsGetTagsQueryProcessor.kt (100%) diff --git a/unit-test/build.gradle.kts b/unit-test/build.gradle.kts index f6ca24a..76f6151 100644 --- a/unit-test/build.gradle.kts +++ b/unit-test/build.gradle.kts @@ -13,7 +13,6 @@ project(":unit-test") { testImplementation("org.springframework.boot:spring-boot-starter-web") testImplementation("org.springframework.boot:spring-boot-starter-data-jpa") - testImplementation("com.h2database:h2") testImplementation(group = "com.fasterxml.jackson.core", name = "jackson-core", version = "2.13.3") testImplementation(group = "com.fasterxml.jackson.core", name = "jackson-databind", version = "2.13.3") diff --git a/unit-test/src/test/java/org/tagwonder/TestRepositoryContext.kt b/unit-test/src/test/kotlin/org/tagwonder/TestRepositoryContext.kt similarity index 100% rename from unit-test/src/test/java/org/tagwonder/TestRepositoryContext.kt rename to unit-test/src/test/kotlin/org/tagwonder/TestRepositoryContext.kt diff --git a/unit-test/src/test/java/org/tagwonder/executors/SpecsCreateTagsCommandExecutor.kt b/unit-test/src/test/kotlin/org/tagwonder/executors/SpecsCreateTagsCommandExecutor.kt similarity index 100% rename from unit-test/src/test/java/org/tagwonder/executors/SpecsCreateTagsCommandExecutor.kt rename to unit-test/src/test/kotlin/org/tagwonder/executors/SpecsCreateTagsCommandExecutor.kt diff --git a/unit-test/src/test/java/org/tagwonder/processors/SpecsGetTagsQueryProcessor.kt b/unit-test/src/test/kotlin/org/tagwonder/processors/SpecsGetTagsQueryProcessor.kt similarity index 100% rename from unit-test/src/test/java/org/tagwonder/processors/SpecsGetTagsQueryProcessor.kt rename to unit-test/src/test/kotlin/org/tagwonder/processors/SpecsGetTagsQueryProcessor.kt