public void ValidateUShortToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new UshortInverseValidator(42);

            // When
            validator.BeLessThan(13);

            // Then
            Assert.True(true);
        }
        public void ValidateUShortToBeLessThanEqualValue()
        {
            // Given
            var validator = new UshortInverseValidator(42);

            // When
            validator.BeLessThan(42);

            // Then
            Assert.True(true);
        }
        public void ValidateUShortToNotBeLessThanValueViolated()
        {
            // Given
            var validator = new UshortInverseValidator(42);

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