public void ValidateUintToBeGreaterThanOrEqualToEqualValue()
        {
            // Given
            var validator = new NullableUintValidator(42);

            // When
            validator.BeGreaterThanOrEqualTo(42);

            // Then
            Assert.True(true);
        }
        public void ValidateNullableUintToBeGreaterThanOrEqualToValueViolated()
        {
            // Given
            var validator = new NullableUintValidator(null);

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