public void ValidateEnumerableHaveCountGreaterThan()
        {
            // Given
            var validator = new EnumerableValidator <int>(new List <int> {
                1
            });

            // When
            validator.HaveCountGreaterThan(0);

            // Then
            Assert.True(true);
        }
        public void ValidateEnumerableHaveCountGreaterThanViolated()
        {
            // Given
            var validator = new EnumerableValidator <int>(new List <int> {
                1
            });

            // When
            var exception = Assert.Throws <XunitException>(() => validator.HaveCountGreaterThan(10, "that's the bottom line"));

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}contains \"1\" item(s){rn}but was expected to contain more than \"10\" item(s){rn}because that's the bottom line",
                exception.UserMessage);
        }