public void Test_AUserRecommendationHideRequest_Validate_Throws_Exceptions()
        {
            // id is null
            var requestMock = new UserRecommendationHideRequestMock();

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

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

            // empty id
            requestMock = new UserRecommendationHideRequestMock {
                Id = string.Empty
            };

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

            // id with spaces
            requestMock = new UserRecommendationHideRequestMock {
                Id = "invalid id"
            };

            act = () => requestMock.Validate();
            act.Should().Throw <ArgumentException>();
        }
        public void Test_AUserRecommendationHideRequest_Returns_Valid_UriPathParameters()
        {
            // only id
            var requestMock = new UserRecommendationHideRequestMock {
                Id = "123"
            };

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

            requestMock.AuthorizationRequirement.Should().Be(AuthorizationRequirement.Required);
        }