Is there any opportunity to add assertion message into my method using libraries of Rest Assured? For example, I want to write an assertion message in this chain method without using System.out.println().
given().spec(requestSpecBuilder).when().get(commentsEndPoint).then().
spec(responseSpecification).assertThat().contentType(ContentType.JSON.withCharset("UTF-8"))