We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
applicantCard 조회 시 평가 점수와 갯수가 현재 위치한 프로세스에 대해서만 나오도록 변경
@DisplayName("특정 Process들에 대한 ApplicantCard 목록을 반환한다.") @Test void mytest() { // given Process process1 = processRepository.save(ProcessFixture.applyType()); Process process2 = processRepository.save(ProcessFixture.interview(null)); Applicant applicant = ApplicantFixture.pendingDobby(process1); applicantRepository.save(applicant); List<Evaluation> evaluations = List.of( // 지원 프로세스에 5점 저장 EvaluationFixture.fivePoints(process1, applicant), // 인터뷰 프로세스에 4점 저장 EvaluationFixture.fourPoints(process2, applicant) ); evaluationRepository.saveAll(evaluations); // when // 평가는 특정 지원자의 현재 위치하는 프로세스에 대해서만 조회해야함. List<ApplicantCard> applicantCards = applicantRepository.findApplicantCardsByProcesses(List.of(process1)); // then ApplicantCard applicantCard1 = applicantCards.get(0); assertAll( () -> assertThat(applicantCard1.evaluationCount()).isEqualTo(1), () -> assertThat(applicantCard1.averageScore()).isEqualTo(5.0) ); }
아래의 별표줄 밑에 요구사항 ID만 작성해주세요. Prefix 금지!
The text was updated successfully, but these errors were encountered:
🚀 안녕하세요 @HyungHoKim00님! 작업을 시작하셨군요?
작업하실 브랜치를 컨벤션에 맞게 현재 이슈 ✨fix-be: applicantCard 조회 시 평가 점수와 갯수가 모든 프로세스에 대해 나오는 버그 수정✨에 연결하여 생성헤드렸어요! 생성된 브랜치명: be-733-
해당 브랜치가 연결된 ⚡️Draft PR⚡️ 생성되었으니 확인해보세요
작업이 완료된 후, 리뷰어를 선택하고 Draft PR 내부의 Ready for review 버튼을 눌러주시면 됩니다! :) 제가 Slack으로 리뷰어에게 DM으로 알려드릴게요
Ready for review
Sorry, something went wrong.
Create draft PR for #733
98141dc
HyungHoKim00
Successfully merging a pull request may close this issue.
목적
작업 세부사항
참고 사항
The text was updated successfully, but these errors were encountered: