示例#1
0
        public void ValidateULongToBeOneOfExpectedValues()
        {
            // Given
            var validator = new UlongValidator(42);

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

            // Then
            Assert.True(true);
        }
示例#2
0
        public void ValidateULongToBeBetweenValues()
        {
            // Given
            var validator = new UlongValidator(42);

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

            // Then
            Assert.True(true);
        }
示例#3
0
        public void ValidateULongToBeLessThanOrEqualToEqualValue()
        {
            // Given
            var validator = new UlongValidator(42);

            // When
            validator.BeLessThanOrEqualTo(42);

            // Then
            Assert.True(true);
        }
示例#4
0
        public void ValidateULongToBeValue()
        {
            // Given
            var validator = new UlongValidator(42);

            // When
            validator.Be(42);

            // Then
            Assert.True(true);
        }
示例#5
0
        public void ValidateULongToBeGreaterThanOrEqualToSmallerValue()
        {
            // Given
            var validator = new UlongValidator(42);

            // When
            validator.BeGreaterThanOrEqualTo(13);

            // Then
            Assert.True(true);
        }
示例#6
0
        public void ValidateULongToBeBetweenValuesMaximumViolated()
        {
            // Given
            var validator = new UlongValidator(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);
        }
示例#7
0
        public void ValidateULongToBeOneOfViolated()
        {
            // Given
            var validator = new UlongValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new ulong[] { 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);
        }
示例#8
0
        public void ValidateULongToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new UlongValidator(42);

            // 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 \"42\"{rn}but was expected to be less than or equal to \"13\"{rn}because that's the bottom line",
                exception.UserMessage);
        }