Пример #1
0
        public void ValidateFloatToBeOneOfExpectedValues()
        {
            // Given
            var validator = new FloatValidator(42);

            // When
            validator.BeOneOf(new float[] { 10, 42 });

            // Then
            Assert.True(true);
        }
Пример #2
0
        public void ValidateFloatToBeBetweenValues()
        {
            // Given
            var validator = new FloatValidator(42);

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

            // Then
            Assert.True(true);
        }
Пример #3
0
        public void ValidateFloatToBeApproximatelyValue()
        {
            // Given
            var validator = new FloatValidator(42.12345f);

            // When
            validator.BeApproximately(42.123f, 0.1f);

            // Then
            Assert.True(true);
        }
Пример #4
0
        public void ValidateFloatToBePositive()
        {
            // Given
            var validator = new FloatValidator(0);

            // When
            validator.BePositive();

            // Then
            Assert.True(true);
        }
Пример #5
0
        public void ValidateFloatToBeLessThanOrEqualToEqualValue()
        {
            // Given
            var validator = new FloatValidator(42);

            // When
            validator.BeLessThanOrEqualTo(42);

            // Then
            Assert.True(true);
        }
Пример #6
0
        public void ValidateFloatToBeGreaterThanOrEqualToSmallerValue()
        {
            // Given
            var validator = new FloatValidator(42);

            // When
            validator.BeGreaterThanOrEqualTo(13);

            // Then
            Assert.True(true);
        }
Пример #7
0
        public void ValidateFloatToBeValue()
        {
            // Given
            var validator = new FloatValidator(42);

            // When
            validator.Be(42);

            // Then
            Assert.True(true);
        }
Пример #8
0
        public void ValidateFloatToBeBetweenValuesMinimumViolated()
        {
            // Given
            var validator = new FloatValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeBetween(65, 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 to be between \"65\" and \"130\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
Пример #9
0
        public void ValidateFloatToBeApproximatelyValueViolated()
        {
            // Given
            var validator = new FloatValidator(42.12345f);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeApproximately(42f, 0.01f, "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\" (+/- 0,01){rn}because that's the bottom line",
                exception.UserMessage);
        }
Пример #10
0
        public void ValidateFloatToBePositiveViolated()
        {
            // Given
            var validator = new FloatValidator(-42);

            // 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 \"-42\"{rn}but was expected to have a positive value{rn}because that's the bottom line",
                exception.UserMessage);
        }
Пример #11
0
        public void ValidateFloatToBeOneOfViolated()
        {
            // Given
            var validator = new FloatValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new float[] { 13, 39 }, 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 to be one of the following values: \"13\", \"39\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
Пример #12
0
        public void ValidateFloatToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new FloatValidator(42);

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