Example #1
0
        public void ValidateULongToBeLessThanValue()
        {
            // Given
            var validator = new UlongValidator(42);

            // When
            validator.BeLessThan(65);

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

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