Example #1
0
        public void Matches_should_detect_nontrue_nominal()
        {
            var subj = new TrueMatcher();

            Assert.False(subj.Matches(false));
        }
Example #2
0
        public void Matches_should_detect_true_nominal()
        {
            var subj = new TrueMatcher();

            Assert.True(subj.Matches(true));
        }