-
Notifications
You must be signed in to change notification settings - Fork 3
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
Feature/tony/trip/user calling taxi #101
Merged
Merged
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
사용자 ID, 여행 ID, 여행 상태값으로 단건, 다건 조회 메서드 추가
여행의 상태값에 상관없이 조회하는게 아닌 호출 메서드에 따라 정해진 여행 상태값을 가지고 있는 데이터를 조회하도록 변경
Entity 종속적인 메서드를 서비스 -> Entity로 위치 수정
1.사용자가 택시 이용 기록을 조회한다 2.사용자가 택시 이용 기록 조회에 실패한다 3.사용자가 택시 이용 기록을 모두 조회한다 세건의 테스트 코드 추가 및 서비스 메서드 수정
택시 운전사 조회 메서드 변경에 따라 상태값도 변경하여 테스트 진행 및 수정
📝 테스트 커버리지 리포트입니다
|
사용자가 택시 이용기록을 단건, 다건 조회하는 API 추가
📝 테스트 커버리지 리포트입니다
|
TripStatus 변경
📝 테스트 커버리지 리포트입니다
|
jiseongTak
approved these changes
Oct 16, 2023
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.
수고하셨습니다!
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.
해결하려는 문제가 무엇인가요?
어떻게 해결했나요?
다음의 내용을 TDD로 구현
1.사용자가 택시 이용 기록을 조회한다
2.사용자가 택시 이용 기록 조회에 실패한다
3.사용자가 택시 이용 기록을 모두 조회한다
TDD로 Service 구현을 위해
1.Trip repository에 메서드 추가
2.TripReader component 계층 추가
Trip 상태 코드 정의에 따라 결제 요청 및 결제 코드 수정
Attachment