Skip to content

Commit

Permalink
test: 내 참여 정보 객체에 시작 위치 위도, 경도 정보 추가에 따른 테스트 수정
Browse files Browse the repository at this point in the history
* SpaceControllerDocsTest: 위도, 경도 필드 추가
  • Loading branch information
yujung7768903 committed Feb 25, 2024
1 parent f611c70 commit 4848f84
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -397,8 +397,8 @@ void getParticipationDetail() throws Exception {
fieldWithPath("data.participationId").type(NUMBER).description("참여 ID"),
fieldWithPath("data.userEmail").type(STRING).description("유저 이메일"),
fieldWithPath("data.userName").type(STRING).description("유저 이름"),
fieldWithPath("data.latitude").type(NUMBER).description("유저 시작 위치 위도"),
fieldWithPath("data.longitude").type(NUMBER).description("유저 시작 위치 경도"),
fieldWithPath("data.latitude").type(NUMBER).description("유저 출발지 위도"),
fieldWithPath("data.longitude").type(NUMBER).description("유저 출발지 경도"),
fieldWithPath("data.locationName").type(STRING).description("유저 출발지 이름"),
fieldWithPath("data.transportation").type(STRING).description("유저 교통수단"),
fieldWithPath("data.isAdmin").type(BOOLEAN).description("관리자 여부(true: 모임장, false: 모임원)"))
Expand Down Expand Up @@ -797,6 +797,8 @@ void readParticipateGroupByRegion() throws Exception {
fieldWithPath(participations + ".participationId").type(NUMBER).description("참여 ID"),
fieldWithPath(participations + ".userEmail").type(STRING).description("유저 이메일"),
fieldWithPath(participations + ".userName").type(STRING).description("유저 이름"),
fieldWithPath(participations + ".latitude").type(NUMBER).description("유저 출발지 위도"),
fieldWithPath(participations + ".longitude").type(NUMBER).description("유저 출발지 경도"),
fieldWithPath(participations + ".locationName").type(STRING).description("유저 출발지 이름"),
fieldWithPath(participations + ".transportation").type(STRING).description("유저 교통수단"),
fieldWithPath(participations + ".isAdmin").type(BOOLEAN).description("관리자 여부(true: 모임장, false: 모임원)"))
Expand Down

0 comments on commit 4848f84

Please sign in to comment.