JUnit이란? 자바 테스트 tool로 'org.springframework.boot:spring-boot-starter-test'에 의존성에 포함 /test 폴더에서 작업 예제 package hello.hellospring.service; import hello.hellospring.domain.Member; import hello.hellospring.repository.MemoryMemberRepository; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import static org.assertj.core.api.Assertions.*; import static org.junit.jupiter.api.As..