feat: findSumOfPointBySamePartAndGeneration 테스트 추가 #338
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📝 PR Summary
SoptampPointRepository의 findSumOfPointBySamePartAndGeneration의 테스트를 추가하였습니다.
이를 통해 기존 findSumOfPointBySamePartAndGeneration에 문제가 있다는 것을 확인하였습니다.
현재는 soptampUser의 part값을 사용하지 않지만, 이를 이용해 soptampUser의 파트와 기수가 같은 soptampPoint의 point 합을 구하는 것을 파악하였고, 사용되지 않는 soptampUser의 part값이 혼란을 발생시킬 수 있다는 생각이 들었습니다.
따라서 아래와 같이 수정하고자 합니다.
soptamp 개선안 (5기에 soptamp가 사용된다면 변경)
=> soptampUser의 part를 활용한다, soptampUser의 generation 값을 삭제한다.
=> soptampUser의 닉네임에 파트를 추가하는 것이 아닌 soptampUser의 part값을 활용한다. (soptamp관련 정보는 매 기수마다 초기화한다.)
추가적으로, totalPoint를 삭제한다.(그 대신 soptampPoint.points 정보를 활용한다.) #333
🌴 Works
🌱 Related Issue
#332