public void VerifyBodyOfGetRequest()
        {
            UserPostDTO userPostRequest     = new UserPostDTO();
            string      userPostRequestJson = JsonConvert.SerializeObject(userPostRequest);

            var response = HTTPrequests.ExecutePostRequest(_url, userPostRequestJson);

            string location = HTTPrequests.GetResponseHeader(HTTPrequests.ExecutePostRequest(_url, userPostRequestJson), "location");

            string body = HTTPrequests.GetResponseBody(HTTPrequests.ExecuteGetRequest(location));

            UserGetDTO userGetResponse = JsonConvert.DeserializeObject <UserGetDTO>(body);

            Assert.IsTrue(RestComparator.CompareUserDTOs(userPostRequest, userGetResponse));
        }