Logging RestAssured requests in Allure

 To fulfill our test reports we could add more details to them - by adding the rest API requests to the steps.

For this, we will need to extend our RestAssured filter.




We need to add a new dependency 
<dependency>
  <groupId>io.qameta.allure</groupId>
  <artifactId>allure-rest-assured</artifactId>
</dependency>

Now we could add into standard RequestSpecification given().filter(new AllureRestAssured()) 

P.S. It also will work for negative (failed) executions