ReplyServiceTests
페이지 정보
본문
package web.service;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import lombok.extern.log4j.Log4j2;
import web.dto.ReplyDTO;
@SpringBootTest
@Log4j2
public class ReplyServiceTests {
@Autowired
private ReplyService replyService;
@Test
public void testRegister() { //등록
ReplyDTO replyDTO = ReplyDTO.builder()
.replyText("댓글을 달아보자~")
.replyer("유관순")
.bno(100L)
.build();
log.info(replyService.register(replyDTO));
}
}
- 이전글ReplyServiceImpl 24.06.21
- 다음글◎ 목록 화면 구현 24.06.21
댓글목록
등록된 댓글이 없습니다.