示例#1
0
        public void ValidateNullableSByteToBePositive()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(null);

            // When
            validator.BePositive();

            // Then
            Assert.True(true);
        }
示例#2
0
        public void ValidateDecimalNotToBeOneOfExpectedValues()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
示例#3
0
        public void ValidateNullableDecimalNotToBeNull()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(0);

            // When
            validator.BeNull();

            // Then
            Assert.True(true);
        }
示例#4
0
        public void ValidateNullableDecimalNotToBeLessThanOrEqualToValue()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(null);

            // When
            validator.BeLessThanOrEqualTo(13);

            // Then
            Assert.True(true);
        }
示例#5
0
        public void ValidateNullableDecimalToNotBeBetweenValues()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(null);

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

            // Then
            Assert.True(true);
        }
示例#6
0
        public void ValidateDecimalToBeLessThanEqualValue()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(42);

            // When
            validator.BeLessThan(42);

            // Then
            Assert.True(true);
        }
示例#7
0
        public void ValidateNullableDecimalToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(null);

            // When
            validator.BeLessThan(13);

            // Then
            Assert.True(true);
        }
示例#8
0
        public void ValidateDecimalNotToBeGreaterThanOrEqualToValue()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(42);

            // When
            validator.BeGreaterThanOrEqualTo(65);

            // Then
            Assert.True(true);
        }
示例#9
0
        public void ValidateDecimalToNotBeGreaterThanBiggerValue()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(42);

            // When
            validator.BeGreaterThan(65);

            // Then
            Assert.True(true);
        }
示例#10
0
        public void ValidateNullableDecimalToBeApproximatelyValue()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(null);

            // When
            validator.BeApproximately(42m, 0.1m);

            // Then
            Assert.True(true);
        }
示例#11
0
        public void ValidateDecimalToNotBeBetweenSmallerValues()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
示例#12
0
        public void ValidateSByteNotToBePositiveViolated()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(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);
        }
示例#13
0
        public void ValidateNullableDecimalNotToBeOneOfViolated()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(null);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new decimal?[] { 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);
        }
示例#14
0
        public void ValidateNullableDecimalNotToBeNullWithReasonViolated()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(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);
        }
示例#15
0
        public void ValidateDecimalToBeBetweenValuesMinimumAndMaximumViolated()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(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);
        }
示例#16
0
        public void ValidateDecimalToBeApproximatelyValueViolated()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(42.12345m);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeApproximately(42.12m, 0.01m, "that's the bottom line"));

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

            Assert.Equal(
                $"{rn}validator{rn}is \"42,12345\"{rn}but was expected to be approximately \"42,12\" (+/- 0,01){rn}because that's the bottom line",
                exception.UserMessage);
        }
示例#17
0
        public void ValidateDecimalNotToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new NullableDecimalInverseValidator(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);
        }