-
Notifications
You must be signed in to change notification settings - Fork 6
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
refactor-be(Sub-Domain): Facade Service 도입을 위한 Controller가 없는 각 도메인 Service 기능 이동 #291
refactor-be(Sub-Domain): Facade Service 도입을 위한 Controller가 없는 각 도메인 Service 기능 이동 #291
Conversation
1722999359.358079 |
📌 Test Coverage Report
|
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.
수고하셨습니다, 도비 :)
리뷰 확인해주세요!
List<Question> nonChoiceTypeQuestions = questionRepository.saveAll(QuestionFixture.createNonChoiceTypeQuestions( | ||
null)); |
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.
List<Question> nonChoiceTypeQuestions = questionRepository.saveAll(QuestionFixture.createNonChoiceTypeQuestions( | |
null)); | |
List<Question> nonChoiceTypeQuestions = questionRepository.saveAll( | |
QuestionFixture.createNonChoiceTypeQuestions(null) | |
); |
위 변경은 어떤가요?
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.
이것이 더 좋겠지만 코드 포맷팅을 적용하면 계속 file change가 발생하네요ㅠㅠ
우선은 저희가 전역적으로 적용한 컨벤션 포맷팅 기준으로 작성했습니다
backend/src/test/java/com/cruru/question/service/QuestionServiceTest.java
Outdated
Show resolved
Hide resolved
backend/src/main/java/com/cruru/question/service/QuestionService.java
Outdated
Show resolved
Hide resolved
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.
수고하셨습니다. 코멘트 하나 달아두었습니다.
backend/src/test/java/com/cruru/question/service/QuestionServiceTest.java
Outdated
Show resolved
Hide resolved
…acourse-teams/2024-cruru into be-284-FACADE_ADOPTION_01-1
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.
LGTM
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.
수고하셨습니다 :)
상세설명
이슈 내용을 확인해주시기 바랍니다
PR 체크리스트
closes #287