public void Matches_should_detect_prefix_failure() { var subj = new StartWithMatcher <string>(new[] { "z" }); Assert.False(subj.Matches(new[] { "a", "b", "c" })); }
public void Matches_should_detect_prefix_nominal() { var subj = new StartWithMatcher <string>(new[] { "a" }); Assert.True(subj.Matches(new[] { "a", "b", "c" })); }