WebTestClient

    MockMvc & WebTestClient & REST Assured

    Controlle단 유닛 테스트에 대해 알아보던 중 Spring REST Docs까지 흘러들어가 공식문서를 훑어보던 중 의존성을 추가하는 부분에서 다음과 같은 부분을 발견하였다. (공식문서) Add a dependency on spring-restdocs-mockmvc in the testImplementation configuration. If you want to use WebTestClient or REST Assured rather than MockMvc, add a dependency on spring-restdocs-webtestclient or spring-restdocs-restassured respectively instead. 위 내용을 간단하게 정리하자면 MockMvc 대신 WebTe..