I use Intellij IDEA 2016.3.1. This is my java code (rest assured library):
when().get("/users").then().statusCode(200).body("", is(empty()));
This is how I want it to be:
when()
.get("/users")
.then()
.statusCode(200)
.body("", is(empty()));
But, Intellij IDEA only allows me to do only this:
when()
.get("/users").then().statusCode(200).body("", is(empty()));
How do I fix it ?
ANSWER - https://sqa.stackexchange.com/questions/9781/auto-formatting-restassured-test-cases-in-my-ide