Spring

    Spring Boot 테스트 설정하기

    pom.xml에 테스트 디펜던시 라이브러리 추가하기 junit4: java 유닛 테스트 라이브러리 Mockito: Mock객체를 생성하기위한 라이브러리 junit junit test org.mockito mockito-core 3.8.0 test org.mockito mockito-inline 3.9.0 test org.mockito mockito-all 1.10.19 test 어노테이션 @RunWith 스프링 부트에 속한 어노테이션(@Autowired, @Component, ...등)을 사용할 수 있도록 해주는 어노테이션. @RunWith(SpringRunner.class) @SpringBootTest 스프링 부트를 실행시켜 테스트를 진행시키도록 해주는 어노테이션. @SpringBootTest(clas..