-
Notifications
You must be signed in to change notification settings - Fork 1
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: feature/#558-apply-calldapter 테스트용 PR #573
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- ResponseResult Exception의 message 파라미터에 기본 인자 설정
- 이전: handleApiResponse2 - 이후: handleApiResponse
- 이전: ApiResponseHandler - 이후: ApiResultHandler
- 이전: NetworkResultCall - 이후: ApiResultCall
- 이전: NetworkResultCallAdapter - 이후: ApiResultCallAdapter
- 이전: NetworkResultCallAdapterFactory - 이후: ApiResultCallAdapterFactory
- 테스트 시나리오: 유효한 형식의 카테고리로 생성을 요청
- 테스트 시나리오: 유효하지 않은 형식의 카테고리로 생성을 요청
- 테스트 시나리오: 20MB를 초과하는 사진을 업로드 요청
- 테스트 시나리오: 서버의 응답이 없는 경우
- 테스트 시나리오: 서버 장애 발생
- 테스트 시나리오: 댓글 삭제를 요청한 사용자와 댓글 작성자의 인증 정보 불일치
- 테스트 시나리오: 인증되지 않은 사용자가 카테고리 생성을 요청
- api 요청 성공(200) 코드 작성 시 201을 200으로 잘못 작성함 - 따라서 200을 201로 수정함
- 테스트 시나리오: 존재하는 카테고리를 조회
- 이전: CallAdapterTest - 이후: ApiResultCallAdapterTest
- Fixture를 함수로 분리하면 테스트 독립성을 더욱 보장할 수 있음
- 이전: makeFakeImageFile() - 이후: createFakeImageFile()
- 이전: MockWebServerFixture - 이후: MockWebServerProvider
- 이전: makeMockResponse() - 이후: createMockResponse()
2 tasks
hxeyexn
changed the title
feature/#558-apply-calldapter 테스트용 PR
refactor: feature/#558-apply-calldapter 테스트용 PR
Dec 18, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
feature/#558-apply-calldapter 테스트용 PR입니다.