public async Task UUTGetHttpReturnsDataFromService()
        {
            var contentFromService = "IGotThis!";

            HttpClient
            .Setup(m => true)
            .Returns(new HttpResponseMessage(HttpStatusCode.OK)
            {
                Content = new StringContent(contentFromService)
            });

            (await UnitUnderTest.GetHttp()).ShouldBe(contentFromService);

            HttpClient.Verify(x => x.Method == HttpMethod.Get);
        }