Rest Assured コードで以下の投稿リクエストがあります。
パラメータ化したい。提案してください。
given().contentType(JSON).with()
.body("\"id\":"123",\"email\":\"abv@gmail.com\"}").expect().body("status",
notNullValue()).when().post("https://localhost:8080/product/create.json");
パラメーター
ID、メール。
String 変数 id,email を宣言し、body() を渡そうとすると、機能しません。
動作しないコード:
String id="123";
String email=abc@gmail.com;
given().contentType(JSON).with()
.body("\"id\":id,\"email\":email}").expect().body("status",
notNullValue()).when().post("https://localhost:8080/product/create.json");