public void Clear_Call_DictionarySwitcher_Clear()
 {
     _DictionaryTwoElements.ClearMutable();
     _DictionarySwitcher.Received(1).GetEmpty <string, string>();
 }
示例#2
0
 public void Clear()
 {
     _Implementation = _Implementation.ClearMutable();
 }
示例#3
0
        public void ClearMutable_Return_SameObject()
        {
            var res = _DictionaryOneElement.ClearMutable();

            res.Should().BeSameAs(_DictionaryOneElement);
        }