▲ BoardRepositoryTest
페이지 정보
작성자 관리자 작성일 24-06-29 09:48 조회 73 댓글 0본문
package web.repository;
import java.util.Optional;
import java.util.UUID;
import java.util.stream.IntStream;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.test.annotation.Commit;
import jakarta.transaction.Transactional;
import lombok.extern.log4j.Log4j2;
import web.domain.Board;
import web.domain.BoardImage;
import web.dto.BoardListReplyCountDTO;
@SpringBootTest
@Log4j2
public class BoardRepositoryTest {
@Autowired
private BoardRepository boardRepository;
@Autowired
private ReplyRepository replyRepository;
@Transactional
@Test
public void testSearchImageReplyCount() {
Pageable pageable = PageRequest.of(0, 10, Sort.by("bno").descending());
boardRepository.searchWithAll(null, null, pageable);
}
...
}
댓글목록 0
등록된 댓글이 없습니다.