Skip to content

Commit

Permalink
test: 자식 댓글 조회 테스트 코드 검증 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb committed Oct 20, 2024
1 parent 122a651 commit f253cbb
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -361,5 +361,18 @@ private Comment createMockComment(
parentResponse.replyComments().stream()
.allMatch(reply -> reply.parentId().equals(parentComment.getId())),
"모든 자식 댓글의 부모 ID는 부모 댓글 ID와 일치해야 합니다.");
// 자식 댓글 내용 검증
assertTrue(
parentResponse.replyComments().stream()
.allMatch(reply -> reply.content().startsWith(childContentPrefix)),
"모든 자식 댓글의 내용은 '자식 댓글 내용'으로 시작해야 합니다.");
// assertEquals로 자식 댓글 내용 검증

for (int i = 0; i < CHILD_COMMENT_COUNT; i++) {
assertEquals(
childContentPrefix + (i + 1),
parentResponse.replyComments().get(i).content(),
"자식 댓글 내용이 일치해야 합니다.");
}
}
}

0 comments on commit f253cbb

Please sign in to comment.