I'm using C# and I need to Test one of my methods that accept System.Net.Http.Headers.HttpRequestHeaders as a parameter. We're using FakeItEasy for the test.
But it seems that the HttpResponseHeaders - does not have the construcotr (and it's sealed), and it uses HttpHeader as base. HttpHeader - has constructor but the Header property only allows get.
Is there a way to build dummy/fake HttpResponseHeaders or HttpResponseMessage and preset the required Header value in it?