public void ValidateNullableUshortToBeNull()
        {
            // Given
            var validator = new NullableUshortValidator(null);

            // When
            validator.BeNull();

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

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

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

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

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

            // When
            validator.BeLessThanOrEqualTo(42);

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

            // When
            validator.BeGreaterThanOrEqualTo(13);

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

            // When
            validator.Be(42);

            // Then
            Assert.True(true);
        }
        public void ValidateUshortToBeBetweenValuesMaximumViolated()
        {
            // Given
            var validator = new NullableUshortValidator(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);
        }
        public void ValidateUshortToBeOneOfViolated()
        {
            // Given
            var validator = new NullableUshortValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new ushort?[] { 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);
        }
        public void ValidateNullableToBeNullWithReasonViolated()
        {
            // Given
            var validator = new NullableUshortValidator(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);
        }
        public void ValidateNullableUshortToBeNullViolated()
        {
            // Given
            var validator = new NullableUshortValidator(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);
        }
        public void ValidateNullableUshortToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new NullableUshortValidator(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);
        }
        public void ValidateUshortToBeGreaterThanValueViolated()
        {
            // Given
            var validator = new NullableUshortValidator(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);
        }