public void ValidateNullableIntToNotBeBetweenValues()
        {
            // Given
            var validator = new NullableIntInverseValidator(null);

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

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

            // When
            validator.BeLessThan(13);

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

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

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

            // When
            validator.BePositive();

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

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

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

            // When
            validator.BeNull();

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

            // When
            validator.BeLessThanOrEqualTo(13);

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

            // When
            validator.BeLessThan(42);

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

            // When
            validator.BeGreaterThanOrEqualTo(65);

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

            // When
            validator.BeGreaterThan(65);

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

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BePositive(because: "that's the bottom line"));

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

            Assert.Equal(
                $"{rn}validator{rn}is \"0\"{rn}but was expected not to have a positive value{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateNullableIntNotToBeOneOfViolated()
        {
            // Given
            var validator = new NullableIntInverseValidator(null);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new int?[] { 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 ValidateNullableIntNotToBeNullWithReasonViolated()
        {
            // Given
            var validator = new NullableIntInverseValidator(null);

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

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

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

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeLessThanOrEqualTo(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 less than or equal to \"42\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateIntToNotBeGreaterThanValueViolated()
        {
            // Given
            var validator = new NullableIntInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeGreaterThan(13, "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 greater than \"13\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateIntToBeBetweenValuesMinimumAndMaximumViolated()
        {
            // Given
            var validator = new NullableIntInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeBetween(13, 100, "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 \"100\"{rn}because that's the bottom line",
                exception.UserMessage);
        }