public void Test_ShowResetWatchedProgressRequest_Validate_Throws_Exceptions()
        {
            // id is null
            var request = new ShowResetWatchedProgressRequest();

            Action act = () => request.Validate();

            act.Should().Throw <ArgumentNullException>();

            // empty id
            request = new ShowResetWatchedProgressRequest {
                Id = string.Empty
            };

            act = () => request.Validate();
            act.Should().Throw <ArgumentException>();

            // id with spaces
            request = new ShowResetWatchedProgressRequest {
                Id = "invalid id"
            };

            act = () => request.Validate();
            act.Should().Throw <ArgumentException>();

            // request body is null
            request = new ShowResetWatchedProgressRequest {
                Id = "id"
            };

            act = () => request.Validate();
            act.Should().Throw <ArgumentNullException>();
        }
        public void Test_ShowResetWatchedProgressRequest_Returns_Valid_UriPathParameters()
        {
            // without extended info
            var request = new ShowResetWatchedProgressRequest {
                Id = "123"
            };

            request.GetUriPathParameters().Should().NotBeNull()
            .And.HaveCount(1)
            .And.Contain(new Dictionary <string, object>
            {
                ["id"] = "123"
            });
        }
        public void Test_ShowResetWatchedProgressRequest_Has_Valid_UriTemplate()
        {
            var request = new ShowResetWatchedProgressRequest();

            request.UriTemplate.Should().Be("shows/{id}/progress/watched/reset");
        }