public void Matches_should_detect_strings_string_comparison()
        {
            var subj = new SequenceEqualMatcher <string>(new [] { "a", "b", "c" }, StringComparer.OrdinalIgnoreCase);

            Assert.True(subj.Matches(new [] { "A", "B", "c" }));
        }
        public void Matches_should_detect_substrings_nominal()
        {
            var subj = new SequenceEqualMatcher <string>(new [] { "a", "b", "c" });

            Assert.True(subj.Matches(new [] { "a", "b", "c" }));
        }