각 컨트롤러마다 통합 테스트를 작성하는데 설정파일의 변동은 거의 없어서 테스트의 설정을 모아두는 클래스를 만들기로 했습니다.@SpringBootTest@AutoConfigureMockMvc@ActiveProfiles("test")@Import({DataInitializer.class,TestRepository.class})@Transactionalpublic class BaseIntegrationTest { protected final ObjectMapper mapper = new ObjectMapper(); @Autowired protected MockMvc mockMvc; @Autowired protected TestRepository testRepository;}기본 통합 테스트의 설정..