테스트 결과를 여러개 실행하여 결과를 도출하기 위해 사용 코드 @Test void findBySource(){ Pageable pageable = PageRequest.of(0, 10, Sort.by("createdAt").descending()); Page bySource = poolContentRepository.findBySource(ContentSource.news, pageable); bySource.stream().findFirst().ifPresent(poolContent -> { assertAll( "first test", () -> assertEquals(12324, poolContent.getId()), () -> assertEquals(ContentSource.news, poolCon..