Beispiel #1
0
        public void ValidateNullableLongToNotBeBetweenValues()
        {
            // Given
            var validator = new NullableLongInverseValidator(null);

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

            // Then
            Assert.True(true);
        }
Beispiel #2
0
        public void ValidateNullableLongToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new NullableLongInverseValidator(null);

            // When
            validator.BeLessThan(13);

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

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

            // Then
            Assert.True(true);
        }
Beispiel #4
0
        public void ValidateNullableSByteToBePositive()
        {
            // Given
            var validator = new NullableLongInverseValidator(null);

            // When
            validator.BePositive();

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

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

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

            // When
            validator.BeNull();

            // Then
            Assert.True(true);
        }
Beispiel #7
0
        public void ValidateNullableLongNotToBeLessThanOrEqualToValue()
        {
            // Given
            var validator = new NullableLongInverseValidator(null);

            // When
            validator.BeLessThanOrEqualTo(13);

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

            // When
            validator.BeLessThan(42);

            // Then
            Assert.True(true);
        }
Beispiel #9
0
        public void ValidateLongNotToBeGreaterThanOrEqualToValue()
        {
            // Given
            var validator = new NullableLongInverseValidator(42);

            // When
            validator.BeGreaterThanOrEqualTo(65);

            // Then
            Assert.True(true);
        }
Beispiel #10
0
        public void ValidateLongToNotBeGreaterThanBiggerValue()
        {
            // Given
            var validator = new NullableLongInverseValidator(42);

            // When
            validator.BeGreaterThan(65);

            // Then
            Assert.True(true);
        }
Beispiel #11
0
        public void ValidateSByteNotToBePositiveViolated()
        {
            // Given
            var validator = new NullableLongInverseValidator(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 #12
0
        public void ValidateNullableLongNotToBeOneOfViolated()
        {
            // Given
            var validator = new NullableLongInverseValidator(null);

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