-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WHD-295] Feat: club payment statistics #65
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다! 리뷰 읽어보시구 답변 부탁드립니다
@@ -40,4 +41,10 @@ public ListWrapperResponse<AdminItemHistoryResponse> getItemHistory(@PathVariabl | |||
@RequestParam(required = false) LocalDate assignedTerm) { | |||
return ListWrapperResponse.of(adminClubService.getItemHistory(clubId, assignedTerm)); | |||
} | |||
|
|||
@GetMapping("/{clubId}/clubPayments") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
club-payments로 변경해보는건 어떨까요?
현재까지의 api 명세 방식이랑은 조금 다른 형태인 것 같아 여쭤봅니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://restfulapi.net/resource-naming/
이 사이트 참고해서 바꾸는 것도 좋은 생각인거 같습니다.
@Test | ||
@DisplayName("동아리 별 동아리 결제 내역 확인") | ||
void getClubPayment() { | ||
// When |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요거 LocalDate.now() 사용해서 작성하게 되면, 내년 3월 이후부터 터지는 테스트가 될 것 같습니다!
명시적으로 LocalDate.of( )를 통해서 테스트에 해당하는 날짜를 지정해보는게 좋을 것 같습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
given과 when에 둘다 LocalDate.now() 사용해서 테스트가 터지진 않지만 명시적으로 LocalDate.of( )를 사용하면 뚜렷하게 원하는 날짜를 테스트 할 수 있을 거 같습니다.
Test Coverage Report
|
Test Coverage Report
|
기능 설명
작성 상세 내용
관련 지라 티켓 번호
WHD-295
참고 자료