public void ValidateNullableUintToBeOneOfExpectedValues()
        {
            // Given
            var validator = new NullableUintValidator(null);

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

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

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new uint?[] { 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);
        }