public void Matches_should_detect_non_matching_count_nominal()
        {
            var subj = new HaveCountMatcher(1);

            Assert.False(subj.Matches(new[] { "1", "2", }));
        }
        public void Matches_should_detect_count_nominal()
        {
            var subj = new HaveCountMatcher(1);

            Assert.True(subj.Matches(new[] { "1", }));
        }