Description
System.Net.Http
has now been uploaded to the repo 😄 🎉 🎈
Whenever I've used this in some service, it works great but makes it hard to unit test => my unit tests don't want to actually ever hit that real end point.
Ages ago, I asked @davidfowl what should we do? I hoping I paraphrase and don't misquote him - but he suggested that I need to fake up a message handler (ie. HttpClientHandler
), wire that up, etc.
As such, I ended up making a helper library called HttpClient.Helpers to help me run my unit tests.
So this works ... but it feels very messy and .. complicated. I'm sure I'm not the first person that needs to make sure my unit tests don't do a real call to an external service.
Is there an easier way? Like .. can't we just have an IHttpClient
interface and we can inject that into our service?