Example #1
0
 public void GivenGenericDictionaryWithoutNoticeEntryCanVerifyAbsence()
 {
     var dic = new Dictionary<string, object>();
     dic.HasNotice("test").Should().Be.False();
 }
Example #2
0
        public void GivenGenericDictionaryWithNoticeEntryCanVerifyExistence()
        {
            var dic = new Dictionary<string, object>();
            dic.Notify("test");

            dic.HasNotice("test").Should().Be.True();
        }