io.restassured.module.scala.RestAssuredSupport
Returns a validatable response that's lets you validate the response.
Returns a validatable response that's lets you validate the response. Usage example:
given().
param("firstName", "John").
param("lastName", "Doe").
when().
get("/greet").
Then().
body("greeting", equalTo("John Doe"));
The reason for using this method instead of then is to avoid Scala compiler warnings.
A validatable response