WebClient & WebTestClient WebTestClient PDF HTTP Response Status Codes package com.heaven.webflux02; import org.junit.Before; import org.junit.Test; import org.springframework.http.MediaType; import org.springframework.test.web.reactive.server.WebTestClient; import reactor.core.publisher.Mono; public class RouteFunction02Test { WebTestClient webTestClient; @Before public void setUp() { webTestCl..