Ejemplo n.º 1
0
        public void ValidateUlongToNotBeBetweenSmallerValues()
        {
            // Given
            var validator = new NullableUlongInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
Ejemplo n.º 2
0
        public void ValidateNullableUlongToNotBeBetweenValues()
        {
            // Given
            var validator = new NullableUlongInverseValidator(null);

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

            // Then
            Assert.True(true);
        }
Ejemplo n.º 3
0
        public void ValidateNullableUlongNotToBeLessThanOrEqualToValue()
        {
            // Given
            var validator = new NullableUlongInverseValidator(null);

            // When
            validator.BeLessThanOrEqualTo(13);

            // Then
            Assert.True(true);
        }
Ejemplo n.º 4
0
        public void ValidateUlongNotToBeOneOfExpectedValues()
        {
            // Given
            var validator = new NullableUlongInverseValidator(42);

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

            // Then
            Assert.True(true);
        }
Ejemplo n.º 5
0
        public void ValidateNullableUlongNotToBeNull()
        {
            // Given
            var validator = new NullableUlongInverseValidator(0);

            // When
            validator.BeNull();

            // Then
            Assert.True(true);
        }
Ejemplo n.º 6
0
        public void ValidateNullableUlongToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new NullableUlongInverseValidator(null);

            // When
            validator.BeLessThan(13);

            // Then
            Assert.True(true);
        }
Ejemplo n.º 7
0
        public void ValidateUlongToBeLessThanEqualValue()
        {
            // Given
            var validator = new NullableUlongInverseValidator(42);

            // When
            validator.BeLessThan(42);

            // Then
            Assert.True(true);
        }
Ejemplo n.º 8
0
        public void ValidateUlongNotToBeGreaterThanOrEqualToValue()
        {
            // Given
            var validator = new NullableUlongInverseValidator(42);

            // When
            validator.BeGreaterThanOrEqualTo(65);

            // Then
            Assert.True(true);
        }
Ejemplo n.º 9
0
        public void ValidateUlongToNotBeGreaterThanBiggerValue()
        {
            // Given
            var validator = new NullableUlongInverseValidator(42);

            // When
            validator.BeGreaterThan(65);

            // Then
            Assert.True(true);
        }
Ejemplo n.º 10
0
        public void ValidateNullableUlongNotToBeOneOfViolated()
        {
            // Given
            var validator = new NullableUlongInverseValidator(null);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new ulong?[] { 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);
        }
Ejemplo n.º 11
0
        public void ValidateUlongNotToBeValueViolated()
        {
            // Given
            var validator = new NullableUlongInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.Be(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 \"42\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
Ejemplo n.º 12
0
        public void ValidateNullableUlongNotToBeNullViolated()
        {
            // Given
            var validator = new NullableUlongInverseValidator(null);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeNull());

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}is null{rn}but was expected not to be null",
                exception.UserMessage);
        }
Ejemplo n.º 13
0
        public void ValidateUlongToBeBetweenValuesMinimumAndMaximumViolated()
        {
            // Given
            var validator = new NullableUlongInverseValidator(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);
        }