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.
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
썸네일 서비스 테스트코드 작성 #662
썸네일 서비스 테스트코드 작성 #662
Changes from all commits
07b5380
d5862a6
dff630f
6ece083
69ede5c
5bc8d17
ae8501c
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
중복되는 코드 private 메서드로 추출해볼까요?
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.
이거는 일부러 분리하지 않았는데요, 전에 켬미와 얘기했던 @beforeeach를 사용하지 않는 이유에 동의했기 때문입니다!
물론 private 메서드로 분리하는 것은 @beforeeach보다는 덜하겠지만 그래도 어떤 객체들이 저장되어 있는지 테스트 코드 안에서 바로 확인할 수 있는게 보다 명확하게 알 수 있지 않을까 싶어서 분리하지 않았습니다.
또한 코드의 길이가 길지 않아 테스트 코드의 가독성을 해친다는 느낌도 없는 것 같은데 몰리의 의견은 어떤가요?
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.
@BeforeEach
를 사용하지 않았던 이유가 특정 테스트만 조회할 때@BeforeEach
보지 못하고 이해하지 못할까봐로 저는 알고 있는데 같은 이유가 맞나요?그렇다면, private 메서드는
@BeforeEach
과 다르게 메서드 안에서 "선언"을 해주기 때문에 보는 사람이 충분히 메서드 내에서 파악할 수 있을 것이라고 생각해요.또 private 메서드를 사용하더라도 이름을 명확하게 설정해주면 메서드를 정말 확인하지 않아도 파악할 수 있을 것
(레벨 1 네오 강의 의견처럼요)이라고도 생각해요.