`RestTestClient` is an HTTP client designed for testing server applications. It wraps
Spring's xref:integration/rest-clients.adoc#rest-restclient[`RestClient`] and uses it to perform requests
Spring's xref:integration/rest-clients.adoc#rest-restclient[`RestClient`] and uses it to perform requests,
but exposes a testing facade for verifying responses. `RestTestClient` can be used to
perform end-to-end HTTP tests. It can also be used to test Spring MVC
applications without a running server via mock server request and response objects.
applications without a running server via MockMvc.
@ -14,7 +14,7 @@ applications without a running server via mock server request and response objec
@@ -14,7 +14,7 @@ applications without a running server via mock server request and response objec
== Setup
To set up a `RestTestClient` you need to choose a server setup to bind to. This can be one
of several mock server setup choices or a connection to a live server.
of several MockMvc setup choices, or a connection to a live server.