验证响应数据
您还可以验证状态码,状态行,Cookie,headers,内容类型和正文。
验证cookis,mock一个接口
Cookie
get("/x").then().assertThat().cookie("cookieName", "cookieValue").
get("/x").then().assertThat().cookies("cookieName1", "cookieValue1", "cookieName2", "cookieValue2").
get("/x").then().assertThat().cookies("cookieName1", "cookieValue1", "cookieName2", containsString("Value2")).
状态码
get("/x").then().assertThat().sta