@TestpublicvoidinsertShouldReturn403WhenLoggedAsClient() {JSONObject newProduct =newJSONObject(postProductInstance);String productAsString =newProduct.toString();given()//isso serve para especificar o tipo da informação.header("Content-type","application/json").header("Authorization","Bearer "+ clientToken).body(productAsString).contentType(ContentType.JSON).accept(ContentType.JSON).when().post("/products").then().statusCode(403);}