public void HttpRequestHelpers_GetHeader_ThrowsArgumentNullException_WhenRequestIsNull()
 {
     Assert.That(() => _httpRequestHelper.GetHeader(null, string.Empty),
                 Throws.Exception
                 .TypeOf <ArgumentNullException>());
 }