Is this possible to add logging for the full URI being called?
For example, for:
RestAssured.baseURI = "http://example.com";
RestAssured.basePath = "/somePath";
RestAssured.port = 8080;
given()
.queryParam("param", "value")
.when()
.get("/someResource")
.log().resourceURI();
logged output would be:
http://example.com:8080/somePath/someResource?param=value
Currently I'm using rest-assured version 2.3.2 and couldn't find a similar
feature.
Original issue reported on code.google.com by b.zulaw...@gmail.com on 29 Sep 2014 at 12:33
Original issue reported on code.google.com by
b.zulaw...@gmail.com
on 29 Sep 2014 at 12:33