public void RemoveCustomHeader_RemoveNonExistantCustomHeader_ReturnsFalse()
        {
            SimpleHttpClient.SimpleClientConfig model = Mockup.GetMockupConfigWithCustomHeader();
            var result = model.RemoveCustomHeader("ThisKeyDoesNotExist");

            Assert.IsFalse(result);
        }
        public void RemoveCustomHeader_RemoveCustomHeader_ReturnsTrue()
        {
            SimpleHttpClient.SimpleClientConfig model = Mockup.GetMockupConfigWithCustomHeader();
            var result = model.RemoveCustomHeader(Mockup.MockCustomHeaderKey);

            Assert.IsTrue(result);
        }