테스트 코드 작성 중 기록한 내용
post 일 경우 body 값이 존재하므로 contentType 을 지정해야함. json 데이터 변환을 위해 .contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(request))); 를 추가한다.
post 일 경우 body 값이 존재하므로 contentType 을 지정해야함. json 데이터 변환을 위해
.contentType(MediaType.APPLICATION_JSON) .content(objectMapper.writeValueAsString(request)));
를 추가한다.