IT'S DO
[JUnit] JUnit Test Sample Code
단위테스트/JUnit 2022. 11. 28. 09:40

import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import java.util.List; import static org.assertj.core.api.AssertionsForClassTypes.assertThat; @SpringBootTest public class EventTests { @Autowired EventRepository eventRepository; @Test void save() { // Event params = new Event("1번 이벤트 제목"..