public void Matches_should_detect_nontrue_nominal() { var subj = new TrueMatcher(); Assert.False(subj.Matches(false)); }
public void Matches_should_detect_true_nominal() { var subj = new TrueMatcher(); Assert.True(subj.Matches(true)); }