Spring - 나의 첫 통합 테스트(Integration Test)
·
Spring
새로운 프로젝트를 진행하면서 가장 큰 목표 중 하나는 테스트 코드에 충분한 시간과 노력을 들여서 안정적인 애플리케이션을 개발하기였다. 이번에 처음 통합 테스트를 구현했던 과정과 배운 내용을 정리해 본다. (피드백 환영!) 통합 테스트 공통 Class 통합 테스트에 공통적으로 사용할 수 있는 공통 클래스를 만들었다. @Disabled @Transactional @SpringBootTest @AutoConfigureMockMvc @AutoConfigureRestDocs @ActiveProfiles("test") @ExtendWith(RestDocumentationExtension.class) public class BaseIntegrationTest { @Autowired protected MockMvc m..
Cold Bean
'rest docs' 태그의 글 목록