コード例 #1
0
        public void Matches_should_detect_prefix_failure()
        {
            var subj = new StartWithMatcher <string>(new[] { "z" });

            Assert.False(subj.Matches(new[] { "a", "b", "c" }));
        }
コード例 #2
0
        public void Matches_should_detect_prefix_nominal()
        {
            var subj = new StartWithMatcher <string>(new[] { "a" });

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