✨ 기존 - 기존 컨트롤러 테스트에서는 get or post 방식의 request를 생성하기 위해 MockMvcResultBuilders의 get(), post() 메서드를 이용하였다. String body = objectMapper.writeValueAsString(dto); ResultActions perform = mockMvc.perform(post("/boards") .contentType(MediaType.APPLICATION_JSON) .locale(Locale.KOREA) .content(body)); // ControllerTest perform.andDo(print()) .andExpect(status().isBadRequest()) .andExpect(content().contentT..