From 39756efc408e2b54b9b8fc3dcba399d8d59a07b2 Mon Sep 17 00:00:00 2001 From: ray-yhc Date: Tue, 1 Aug 2023 19:41:33 +0900 Subject: [PATCH] doc: update doc tags --- .../java/swm/hkcc/LGTM/app/global/api/IntroControllerTest.java | 1 + .../app/modules/auth/controller/CheckDuplicateNicknameTest.java | 1 + .../hkcc/LGTM/app/modules/auth/controller/SignupJuniorTest.java | 1 + .../hkcc/LGTM/app/modules/auth/controller/SignupSeniorTest.java | 1 + 4 files changed, 4 insertions(+) diff --git a/API-Server/src/test/java/swm/hkcc/LGTM/app/global/api/IntroControllerTest.java b/API-Server/src/test/java/swm/hkcc/LGTM/app/global/api/IntroControllerTest.java index 8f7652fa..af7bcdeb 100644 --- a/API-Server/src/test/java/swm/hkcc/LGTM/app/global/api/IntroControllerTest.java +++ b/API-Server/src/test/java/swm/hkcc/LGTM/app/global/api/IntroControllerTest.java @@ -58,6 +58,7 @@ void contextLoads() throws Exception { preprocessResponse(prettyPrint()), // response JSON 정렬하여 출력 resource(ResourceSnippetParameters.builder() + .tag("Global") .summary("인트로 API") .description("앱 버전 정보를 조회한다.") diff --git a/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/CheckDuplicateNicknameTest.java b/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/CheckDuplicateNicknameTest.java index 148fd6e3..09459ada 100644 --- a/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/CheckDuplicateNicknameTest.java +++ b/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/CheckDuplicateNicknameTest.java @@ -86,6 +86,7 @@ void checkNickname_NonDuplicate() throws Exception { preprocessResponse(prettyPrint()), // response JSON 정렬하여 출력 resource(ResourceSnippetParameters.builder() + .tag("Authorization") .summary("[회원인증] 닉네임 중복 검사") .description("닉네임 중복 검사 후, 중복 여부를 반환한다.\n\n" + "View : 회원가입 화면 > 닉네임 입력 화면\n\n\n\n" + diff --git a/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/SignupJuniorTest.java b/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/SignupJuniorTest.java index eaa64ecb..12cc6dc3 100644 --- a/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/SignupJuniorTest.java +++ b/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/SignupJuniorTest.java @@ -208,6 +208,7 @@ void juniorSignupDuplicatedNickname() throws Exception { preprocessResponse(prettyPrint()), // response JSON 정렬하여 출력 resource(ResourceSnippetParameters.builder() + .tag("Authorization") .responseFields( fieldWithPath("success").type(JsonFieldType.BOOLEAN).description("성공 여부"), fieldWithPath("responseCode").type(JsonFieldType.NUMBER).description("응답 코드"), diff --git a/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/SignupSeniorTest.java b/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/SignupSeniorTest.java index ad09fece..bc880558 100644 --- a/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/SignupSeniorTest.java +++ b/API-Server/src/test/java/swm/hkcc/LGTM/app/modules/auth/controller/SignupSeniorTest.java @@ -126,6 +126,7 @@ void seniorSignup() throws Exception { preprocessResponse(prettyPrint()), // response JSON 정렬하여 출력 resource(ResourceSnippetParameters.builder() + .tag("Authorization") .summary("[회원인증] 시니어 회원가입") .description( CustomMDGenerator.builder()