public void IsHttpResponseMessageContentRespondsTrue()
        {
            HttpContent content = new StringContent(String.Empty);

            content.Headers.ContentType = ParserData.HttpResponseMediaType;
            Assert.True(content.IsHttpResponseMessageContent(), "Content should be HTTP response.");
        }
 public void IsHttpResponseMessageContentRespondsTrue()
 {
     HttpContent content = new StringContent(String.Empty);
     content.Headers.ContentType = ParserData.HttpResponseMediaType;
     Assert.True(content.IsHttpResponseMessageContent(), "Content should be HTTP response.");
 }