Skip to content

Commit

Permalink
refactor: 컨벤션에 따른 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ503 committed Feb 8, 2024
1 parent 1f07fe6 commit 907ba8e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

public class FriendRequestNotAllowedException extends BloomingException {


private FriendRequestNotAllowedException(final ExceptionMessage exceptionMessage) {
super(exceptionMessage);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import com.backend.blooming.notification.domain.Notification;
import com.backend.blooming.notification.infrastructure.repository.NotificationRepository;
import com.backend.blooming.user.application.exception.NotFoundUserException;
import org.assertj.core.api.*;
import org.assertj.core.api.SoftAssertions;
import org.junit.jupiter.api.DisplayNameGeneration;
import org.junit.jupiter.api.DisplayNameGenerator;
import org.junit.jupiter.api.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,10 @@ class FriendControllerTest extends FriendControllerTestFixture {
fieldWithPath("friends").type(JsonFieldType.ARRAY).description("친구 요청을 보낸 사용자 목록"),
fieldWithPath("friends.[].id").type(JsonFieldType.NUMBER).description("친구 요청 아이디"),
fieldWithPath("friends.[].friend.id").type(JsonFieldType.NUMBER).description("사용자 아이디"),
fieldWithPath("friends.[].friend.email").type(JsonFieldType.STRING)
.description("사용자 이메일"),
fieldWithPath("friends.[].friend.name").type(JsonFieldType.STRING)
.description("사용자 이름"),
fieldWithPath("friends.[].friend.color").type(JsonFieldType.STRING)
.description("사용자 테마 색상"),
fieldWithPath("friends.[].friend.statusMessage").type(JsonFieldType.STRING)
.description("사용자 상태 메시지"),
fieldWithPath("friends.[].friend.email").type(JsonFieldType.STRING).description("사용자 이메일"),
fieldWithPath("friends.[].friend.name").type(JsonFieldType.STRING).description("사용자 이름"),
fieldWithPath("friends.[].friend.color").type(JsonFieldType.STRING).description("사용자 테마 색상"),
fieldWithPath("friends.[].friend.statusMessage").type(JsonFieldType.STRING).description("사용자 상태 메시지"),
fieldWithPath("friends.[].isFriends").type(JsonFieldType.BOOLEAN).description("친구 여부")
)
)
Expand Down Expand Up @@ -233,14 +229,10 @@ class FriendControllerTest extends FriendControllerTestFixture {
fieldWithPath("friends").type(JsonFieldType.ARRAY).description("친구 요청을 받은 사용자 목록"),
fieldWithPath("friends.[].id").type(JsonFieldType.NUMBER).description("친구 요청 아이디"),
fieldWithPath("friends.[].friend.id").type(JsonFieldType.NUMBER).description("사용자 아이디"),
fieldWithPath("friends.[].friend.email").type(JsonFieldType.STRING)
.description("사용자 이메일"),
fieldWithPath("friends.[].friend.name").type(JsonFieldType.STRING)
.description("사용자 이름"),
fieldWithPath("friends.[].friend.color").type(JsonFieldType.STRING)
.description("사용자 테마 색상"),
fieldWithPath("friends.[].friend.statusMessage").type(JsonFieldType.STRING)
.description("사용자 상태 메시지"),
fieldWithPath("friends.[].friend.email").type(JsonFieldType.STRING).description("사용자 이메일"),
fieldWithPath("friends.[].friend.name").type(JsonFieldType.STRING).description("사용자 이름"),
fieldWithPath("friends.[].friend.color").type(JsonFieldType.STRING).description("사용자 테마 색상"),
fieldWithPath("friends.[].friend.statusMessage").type(JsonFieldType.STRING).description("사용자 상태 메시지"),
fieldWithPath("friends.[].isFriends").type(JsonFieldType.BOOLEAN).description("친구 여부")
)
)
Expand Down Expand Up @@ -286,14 +278,10 @@ class FriendControllerTest extends FriendControllerTestFixture {
fieldWithPath("friends").type(JsonFieldType.ARRAY).description("서로 친구인 사용자 목록"),
fieldWithPath("friends.[].id").type(JsonFieldType.NUMBER).description("친구 요청 아이디"),
fieldWithPath("friends.[].friend.id").type(JsonFieldType.NUMBER).description("사용자 아이디"),
fieldWithPath("friends.[].friend.email").type(JsonFieldType.STRING)
.description("사용자 이메일"),
fieldWithPath("friends.[].friend.name").type(JsonFieldType.STRING)
.description("사용자 이름"),
fieldWithPath("friends.[].friend.color").type(JsonFieldType.STRING)
.description("사용자 테마 색상"),
fieldWithPath("friends.[].friend.statusMessage").type(JsonFieldType.STRING)
.description("사용자 상태 메시지"),
fieldWithPath("friends.[].friend.email").type(JsonFieldType.STRING).description("사용자 이메일"),
fieldWithPath("friends.[].friend.name").type(JsonFieldType.STRING).description("사용자 이름"),
fieldWithPath("friends.[].friend.color").type(JsonFieldType.STRING).description("사용자 테마 색상"),
fieldWithPath("friends.[].friend.statusMessage").type(JsonFieldType.STRING).description("사용자 상태 메시지"),
fieldWithPath("friends.[].isFriends").type(JsonFieldType.BOOLEAN).description("친구 여부")
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,7 @@ class UserControllerTest extends UserControllerTestFixture {
fieldWithPath("users.[].name").type(JsonFieldType.STRING).description("사용자 이름"),
fieldWithPath("users.[].color").type(JsonFieldType.STRING).description("사용자 테마 색상 코드"),
fieldWithPath("users.[].statusMessage").type(JsonFieldType.STRING).description("사용자 상태 메시지"),
fieldWithPath("users.[].friendsStatus").type(JsonFieldType.STRING)
.description("로그인한 사용자와의 친구 상태")
fieldWithPath("users.[].friendsStatus").type(JsonFieldType.STRING).description("로그인한 사용자와의 친구 상태")
)
));
}
Expand Down

0 comments on commit 907ba8e

Please sign in to comment.