Parsing Json
Parsing Json
testing;
@Test
public void verifyResponse(){
RestAssured.baseURI = "https://maps.googleapis.com";
when().
get("/maps/api/place/nearbysearch/json").
then().assertThat().statusCode(200).and().
contentType(ContentType.JSON).
log().all().
extract().response();