JUnit

    [Spring] Springboot JUnit 테스트 시 설정

    1. pom.xml 설정 1) Junit 4.12 버전 이상 junit junit 4.12 test 2) Spring-boot starter-test org.springframework.boot spring-boot-starter-test 1.5.3.RELEASE 테스트 클래스 구성 import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; impor..