public void ValidateNullableShortToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new NullableShortInverseValidator(null);

            // When
            validator.BeLessThan(13);

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

            // When
            validator.BePositive();

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

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

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

            // When
            validator.BeNull();

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

            // When
            validator.BeLessThanOrEqualTo(13);

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

            // When
            validator.BeLessThan(42);

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

            // When
            validator.BeGreaterThanOrEqualTo(65);

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

            // When
            validator.BeGreaterThan(65);

            // Then
            Assert.True(true);
        }
        public void ValidateSByteNotToBePositiveViolated()
        {
            // Given
            var validator = new NullableShortInverseValidator(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 ValidateNullableShortNotToBeOneOfViolated()
        {
            // Given
            var validator = new NullableShortInverseValidator(null);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new short?[] { 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 ValidateNullableShortNotToBeNullWithReasonViolated()
        {
            // Given
            var validator = new NullableShortInverseValidator(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 ValidateShortNotToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new NullableShortInverseValidator(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 ValidateShortToNotBeGreaterThanValueViolated()
        {
            // Given
            var validator = new NullableShortInverseValidator(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 ValidateShortToBeBetweenValuesMinimumAndMaximumViolated()
        {
            // Given
            var validator = new NullableShortInverseValidator(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);
        }