Example #1
0
        public void ValidateEnumerableNotHaveCountLessThanOrEqualTo()
        {
            // Given
            var validator = new EnumerableInverseValidator <int>(new List <int> {
                1, 2, 3
            });

            // When
            validator.HaveCountLessThanOrEqualTo(1);

            // Then
            Assert.True(true);
        }
Example #2
0
        public void ValidateEnumerableNotHaveCountLessThanOrEqualToViolated()
        {
            // Given
            var validator = new EnumerableInverseValidator <int>(new List <int> {
                1
            });

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