Skip to content

Commit

Permalink
refactor: 도메인 별 테스트 코드 패키지 분리
Browse files Browse the repository at this point in the history
  • Loading branch information
Songusika committed Nov 21, 2023
1 parent 7b0a211 commit 860fb21
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ void init() {
PageRequest pageRequest = PageRequest.of(0, 10);

Slice<Comment> comments = commentRepository.getCommentsByCursor(1L, 15L, pageRequest);
System.out.println("====================================");
System.out.println(commentRepository.count());

assertThat(comments.getContent())
.hasSize(10)
.map(BaseEntity::getId)
Expand Down

0 comments on commit 860fb21

Please sign in to comment.