diff --git a/src/test/java/com/tht/api/app/documentation/UserJoinDocumentation.java b/src/test/java/com/tht/api/app/documentation/UserJoinDocumentation.java index 3f26d5a1..bc3c52c2 100644 --- a/src/test/java/com/tht/api/app/documentation/UserJoinDocumentation.java +++ b/src/test/java/com/tht/api/app/documentation/UserJoinDocumentation.java @@ -63,7 +63,7 @@ void getCertificationNumber() throws Exception { preprocessResponse(prettyPrint()), resource( ResourceSnippetParameters.builder() - .tag("유저") + .tag("유저 - 회원가입") .description("유저 번호 인증번호 발급") .pathParameters(parameterWithName("phone-number").description("유저 폰 번호")) .requestFields() @@ -102,7 +102,7 @@ void duplicateNickname() throws Exception { preprocessResponse(prettyPrint()), resource( ResourceSnippetParameters.builder() - .tag("유저") + .tag("유저 - 회원가입") .description("유저 닉네임 중복 체크") .pathParameters(parameterWithName("nick-name").description("닉네임")) .requestFields() @@ -140,7 +140,7 @@ void normalUserJoin() throws Exception { preprocessResponse(prettyPrint()), resource( ResourceSnippetParameters.builder() - .tag("유저") + .tag("유저 - 회원가입") .description("유저 일반 회원가입") .requestFields( fieldWithPath("username").description("닉네임"), @@ -212,7 +212,7 @@ void getUserSignUpInfo() throws Exception { preprocessResponse(prettyPrint()), resource( ResourceSnippetParameters.builder() - .tag("유저") + .tag("유저 - 회원가입") .description("유저 회원가입 이력 조회") .pathParameters(parameterWithName("phone-number").description("핸드폰 번호")) .requestFields() @@ -250,7 +250,7 @@ void integratedUserJoin() throws Exception { preprocessResponse(prettyPrint()), resource( ResourceSnippetParameters.builder() - .tag("유저") + .tag("유저 - 회원가입") .description("유저 SNS 아이디 통합 회원 가입") .requestFields( fieldWithPath("phoneNumber").description("전화번호"), diff --git a/src/test/java/com/tht/api/app/documentation/UserLoginDocumentation.java b/src/test/java/com/tht/api/app/documentation/UserLoginDocumentation.java index 29f2e452..ca21ca09 100644 --- a/src/test/java/com/tht/api/app/documentation/UserLoginDocumentation.java +++ b/src/test/java/com/tht/api/app/documentation/UserLoginDocumentation.java @@ -59,7 +59,7 @@ void normalUserLogin() throws Exception { preprocessResponse(prettyPrint()), resource( ResourceSnippetParameters.builder() - .tag("유저") + .tag("유저 - 로그인") .description("유저 일반 로그인") .requestFields( fieldWithPath("phoneNumber").description("유저 전화번호"), @@ -101,7 +101,7 @@ void snsUserLogin() throws Exception { preprocessResponse(prettyPrint()), resource( ResourceSnippetParameters.builder() - .tag("유저") + .tag("유저 - 로그인") .description("유저 SNS 로그인") .requestFields( fieldWithPath("email").description("유저 email"), @@ -143,7 +143,7 @@ void refreshTokenDocs() throws Exception { preprocessResponse(prettyPrint()), resource( ResourceSnippetParameters.builder() - .tag("유저") + .tag("유저 - 로그인") .description("유저 access token 재발급 요청") .responseFields( fieldWithPath("accessToken").description("액세스 토큰"), @@ -176,7 +176,7 @@ void refreshTokenDocs_fail() throws Exception { preprocessResponse(prettyPrint()), resource( ResourceSnippetParameters.builder() - .tag("유저") + .tag("유저 - 로그인") .description("유저 access token 재발급 요청 - refresh token 만료 시") .responseFields( fieldWithPath("timestamp").description("exception 발생 시각"),