Ejemplo n.º 1
0
        public void ValidateNullableShortToBeNull()
        {
            // Given
            var validator = new NullableShortValidator(null);

            // When
            validator.BeNull();

            // Then
            Assert.True(true);
        }
Ejemplo n.º 2
0
        public void ValidateShortToBeBetweenValues()
        {
            // Given
            var validator = new NullableShortValidator(42);

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

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

            // When
            validator.BePositive();

            // Then
            Assert.True(true);
        }
Ejemplo n.º 4
0
        public void ValidateNullableShortToBeOneOfExpectedValues()
        {
            // Given
            var validator = new NullableShortValidator(null);

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

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

            // When
            validator.BeLessThanOrEqualTo(42);

            // Then
            Assert.True(true);
        }
Ejemplo n.º 6
0
        public void ValidateShortToBeGreaterThanOrEqualToSmallerValue()
        {
            // Given
            var validator = new NullableShortValidator(42);

            // When
            validator.BeGreaterThanOrEqualTo(13);

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

            // When
            validator.Be(42);

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

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeBetween(13, 39, "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 \"13\" and \"39\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
Ejemplo n.º 9
0
        public void ValidateSByteToBePositiveViolated()
        {
            // Given
            var validator = new NullableShortValidator(-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);
        }
Ejemplo n.º 10
0
        public void ValidateShortToBeOneOfViolated()
        {
            // Given
            var validator = new NullableShortValidator(42);

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

            // 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 \"0\"{rn}but was expected to be null{rn}because that's the bottom line",
                exception.UserMessage);
        }
Ejemplo n.º 12
0
        public void ValidateNullableShortToBeNullViolated()
        {
            // Given
            var validator = new NullableShortValidator(0);

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

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

            Assert.Equal(
                $"{rn}validator{rn}is \"0\"{rn}but was expected to be null",
                exception.UserMessage);
        }
Ejemplo n.º 13
0
        public void ValidateNullableShortToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new NullableShortValidator(null);

            // 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 \"\"{rn}but was expected to be less than or equal to \"13\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
Ejemplo n.º 14
0
        public void ValidateShortToBeGreaterThanValueViolated()
        {
            // Given
            var validator = new NullableShortValidator(42);

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