import io.restassured.RestAssured;
import io.restassured.response.Response;
public class RestAssuredExample {
public static void main(String[] args) {
RestAssured.baseURI = "https://api.example.com";
Response response = RestAssured.get("/users");
response.then().statusCode(200);
response.then().body("name", hasItem("John"))
.body("age", hasItem(30));
}
}