Esempio n. 1
0
        public void ValidateFloatToNotBeBetweenSmallerValues()
        {
            // Given
            var validator = new FloatInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
Esempio n. 2
0
        public void ValidateFloatToNotBeBetweenBiggerValues()
        {
            // Given
            var validator = new FloatInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
Esempio n. 3
0
        public void ValidateFloatToBeApproximatelyValue()
        {
            // Given
            var validator = new FloatInverseValidator(42.2f);

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

            // Then
            Assert.True(true);
        }
Esempio n. 4
0
        public void ValidateFloatToBePositive()
        {
            // Given
            var validator = new FloatInverseValidator(-42);

            // When
            validator.BePositive();

            // Then
            Assert.True(true);
        }
Esempio n. 5
0
        public void ValidateFloatNotToBeOneOfExpectedValues()
        {
            // Given
            var validator = new FloatInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
Esempio n. 6
0
        public void ValidateFloatNotToBeLessThanOrEqualToValue()
        {
            // Given
            var validator = new FloatInverseValidator(42);

            // When
            validator.BeLessThanOrEqualTo(13);

            // Then
            Assert.True(true);
        }
Esempio n. 7
0
        public void ValidateFloatNotToBeNegative()
        {
            // Given
            var validator = new FloatInverseValidator(0);

            // When
            validator.BeNegative();

            // Then
            Assert.True(true);
        }
Esempio n. 8
0
        public void ValidateFloatToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new FloatInverseValidator(42);

            // When
            validator.BeLessThan(13);

            // Then
            Assert.True(true);
        }
Esempio n. 9
0
        public void ValidateFloatToBeGreaterThanEqualValue()
        {
            // Given
            var validator = new FloatInverseValidator(42);

            // When
            validator.BeGreaterThan(42);

            // Then
            Assert.True(true);
        }
Esempio n. 10
0
        public void ValidateFloatToBeApproximatelyValueViolated()
        {
            // Given
            var validator = new FloatInverseValidator(42.12345f);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeApproximately(42.12f, 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,12\" (+/- 0,01){rn}because that's the bottom line",
                exception.UserMessage);
        }
Esempio n. 11
0
        public void ValidateFloatNotToBePositiveViolated()
        {
            // Given
            var validator = new FloatInverseValidator(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);
        }
Esempio n. 12
0
        public void ValidateFloatNotToBeOneOfViolated()
        {
            // Given
            var validator = new FloatInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new float[] { 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);
        }
Esempio n. 13
0
        public void ValidateFloatNotToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new FloatInverseValidator(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);
        }
Esempio n. 14
0
        public void ValidateFloatToNotBeGreaterThanValueViolated()
        {
            // Given
            var validator = new FloatInverseValidator(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);
        }
Esempio n. 15
0
        public void ValidateFloatToBeBetweenValuesMinimumAndMaximumViolated()
        {
            // Given
            var validator = new FloatInverseValidator(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);
        }