public async Task AddCustomGalleryTagsAsync_WithTagsNull_ThrowsArgumentNullException()
        {
            var client   = new ImgurClient("123", "1234");
            var endpoint = new CustomGalleryEndpoint(client);

            var exception =
                await
                Record.ExceptionAsync(
                    async() => await endpoint.AddCustomGalleryTagsAsync(null).ConfigureAwait(false))
                .ConfigureAwait(false);

            Assert.NotNull(exception);
            Assert.IsType <ArgumentNullException>(exception);
        }
        public async Task AddCustomGalleryTagsAsync_True()
        {
            var mockUrl      = "https://api.imgur.com/3/g/custom/add_tags";
            var mockResponse = new HttpResponseMessage(HttpStatusCode.OK)
            {
                Content = new StringContent(MockCustomGalleryEndpointResponses.AddCustomGalleryTags)
            };

            var client   = new ImgurClient("123", "1234", MockOAuth2Token);
            var endpoint = new CustomGalleryEndpoint(client,
                                                     new HttpClient(new MockHttpMessageHandler(mockUrl, mockResponse)));
            var added =
                await endpoint.AddCustomGalleryTagsAsync(new List <string> {
                "Cats", "Dogs"
            }).ConfigureAwait(false);

            Assert.True(added);
        }