예제 #1
0
        public void ValidateDecimalNotToBeNegative()
        {
            // Given
            var validator = new DecimalInverseValidator(0);

            // When
            validator.BeNegative();

            // Then
            Assert.True(true);
        }
예제 #2
0
        public void ValidateDecimalToNotBeBetweenBiggerValues()
        {
            // Given
            var validator = new DecimalInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
예제 #3
0
        public void ValidateDecimalToBeApproximatelyValue()
        {
            // Given
            var validator = new DecimalInverseValidator(42.2m);

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

            // Then
            Assert.True(true);
        }
예제 #4
0
        public void ValidateDecimalToBePositive()
        {
            // Given
            var validator = new DecimalInverseValidator(-42);

            // When
            validator.BePositive();

            // Then
            Assert.True(true);
        }
예제 #5
0
        public void ValidateDecimalNotToBeOneOfExpectedValues()
        {
            // Given
            var validator = new DecimalInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
예제 #6
0
        public void ValidateDecimalNotToBeLessThanOrEqualToValue()
        {
            // Given
            var validator = new DecimalInverseValidator(42);

            // When
            validator.BeLessThanOrEqualTo(13);

            // Then
            Assert.True(true);
        }
예제 #7
0
        public void ValidateDecimalToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new DecimalInverseValidator(42);

            // When
            validator.BeLessThan(13);

            // Then
            Assert.True(true);
        }
예제 #8
0
        public void ValidateDecimalToBeGreaterThanEqualValue()
        {
            // Given
            var validator = new DecimalInverseValidator(42);

            // When
            validator.BeGreaterThan(42);

            // Then
            Assert.True(true);
        }
예제 #9
0
        public void ValidateDecimalToBeApproximatelyValueViolated()
        {
            // Given
            var validator = new DecimalInverseValidator(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);
        }
예제 #10
0
        public void ValidateDecimalNotToBePositiveViolated()
        {
            // Given
            var validator = new DecimalInverseValidator(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);
        }
예제 #11
0
        public void ValidateDecimalNotToBeOneOfViolated()
        {
            // Given
            var validator = new DecimalInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new decimal[] { 13, 42 }, because: "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 one of the following values: \"13\", \"42\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
예제 #12
0
        public void ValidateDecimalNotToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new DecimalInverseValidator(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);
        }
예제 #13
0
        public void ValidateDecimalToBeBetweenValuesMinimumAndMaximumViolated()
        {
            // Given
            var validator = new DecimalInverseValidator(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);
        }