public void ValidateUintToNotBeBetweenSmallerValues()
        {
            // Given
            var validator = new NullableUintInverseValidator(42);

            // When
            validator.BeBetween(13, 39);

            // Then
            Assert.True(true);
        }
        public void ValidateNullableUintToNotBeBetweenValues()
        {
            // Given
            var validator = new NullableUintInverseValidator(null);

            // When
            validator.BeBetween(65, 130);

            // Then
            Assert.True(true);
        }
        public void ValidateNullableUintNotToBeLessThanOrEqualToValue()
        {
            // Given
            var validator = new NullableUintInverseValidator(null);

            // When
            validator.BeLessThanOrEqualTo(13);

            // Then
            Assert.True(true);
        }
        public void ValidateUintNotToBeOneOfExpectedValues()
        {
            // Given
            var validator = new NullableUintInverseValidator(42);

            // When
            validator.BeOneOf(new uint?[] { 10, 39 });

            // Then
            Assert.True(true);
        }
        public void ValidateNullableUintNotToBeNull()
        {
            // Given
            var validator = new NullableUintInverseValidator(0);

            // When
            validator.BeNull();

            // Then
            Assert.True(true);
        }
        public void ValidateNullableUintToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new NullableUintInverseValidator(null);

            // When
            validator.BeLessThan(13);

            // Then
            Assert.True(true);
        }
        public void ValidateUintToBeLessThanEqualValue()
        {
            // Given
            var validator = new NullableUintInverseValidator(42);

            // When
            validator.BeLessThan(42);

            // Then
            Assert.True(true);
        }
        public void ValidateUintNotToBeGreaterThanOrEqualToValue()
        {
            // Given
            var validator = new NullableUintInverseValidator(42);

            // When
            validator.BeGreaterThanOrEqualTo(65);

            // Then
            Assert.True(true);
        }
        public void ValidateUintToNotBeGreaterThanBiggerValue()
        {
            // Given
            var validator = new NullableUintInverseValidator(42);

            // When
            validator.BeGreaterThan(65);

            // Then
            Assert.True(true);
        }
        public void ValidateNullableUintNotToBeOneOfViolated()
        {
            // Given
            var validator = new NullableUintInverseValidator(null);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new uint?[] { null, 42 }, because: "that's the bottom line"));

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}is \"\"{rn}but was expected not to be one of the following values: \"\", \"42\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateUintNotToBeValueViolated()
        {
            // Given
            var validator = new NullableUintInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.Be(42, "that's the bottom line"));

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}is \"42\"{rn}but was expected not to be \"42\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateNullableUintNotToBeNullViolated()
        {
            // Given
            var validator = new NullableUintInverseValidator(null);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeNull());

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}is null{rn}but was expected not to be null",
                exception.UserMessage);
        }
        public void ValidateUintToBeBetweenValuesMinimumAndMaximumViolated()
        {
            // Given
            var validator = new NullableUintInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeBetween(13, 130, "that's the bottom line"));

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}is \"42\"{rn}but was expected not to be between \"13\" and \"130\"{rn}because that's the bottom line",
                exception.UserMessage);
        }