Beispiel #1
0
        public void ValidateLongToNotBeBetweenSmallerValues()
        {
            // Given
            var validator = new LongInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
Beispiel #2
0
        public void ValidateLongToBeGreaterThanEqualValue()
        {
            // Given
            var validator = new LongInverseValidator(42);

            // When
            validator.BeGreaterThan(42);

            // Then
            Assert.True(true);
        }
Beispiel #3
0
        public void ValidateLongToNotBeBetweenBiggerValues()
        {
            // Given
            var validator = new LongInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
Beispiel #4
0
        public void ValidateLongToBePositive()
        {
            // Given
            var validator = new LongInverseValidator(-42);

            // When
            validator.BePositive();

            // Then
            Assert.True(true);
        }
Beispiel #5
0
        public void ValidateLongNotToBeOneOfExpectedValues()
        {
            // Given
            var validator = new LongInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
Beispiel #6
0
        public void ValidateLongNotToBeNegative()
        {
            // Given
            var validator = new LongInverseValidator(0);

            // When
            validator.BeNegative();

            // Then
            Assert.True(true);
        }
Beispiel #7
0
        public void ValidateLongNotToBeLessThanOrEqualToValue()
        {
            // Given
            var validator = new LongInverseValidator(42);

            // When
            validator.BeLessThanOrEqualTo(13);

            // Then
            Assert.True(true);
        }
Beispiel #8
0
        public void ValidateLongToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new LongInverseValidator(42);

            // When
            validator.BeLessThan(13);

            // Then
            Assert.True(true);
        }
Beispiel #9
0
        public void ValidateLongToBeBetweenValuesMinimumAndMaximumViolated()
        {
            // Given
            var validator = new LongInverseValidator(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);
        }
Beispiel #10
0
        public void ValidateLongNotToBePositiveViolated()
        {
            // Given
            var validator = new LongInverseValidator(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);
        }
Beispiel #11
0
        public void ValidateLongNotToBeOneOfViolated()
        {
            // Given
            var validator = new LongInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new long[] { 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);
        }
Beispiel #12
0
        public void ValidateLongNotToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new LongInverseValidator(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);
        }
Beispiel #13
0
        public void ValidateLongToNotBeGreaterThanValueViolated()
        {
            // Given
            var validator = new LongInverseValidator(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);
        }