public void IndexerTest()
 {
     var target = new MockExceptionDictionary();
     target[2] = 2;
 }
 public void RemoveTest()
 {
     var target = new MockExceptionDictionary();
     target.Remove(2);
 }
 public void ClearTest()
 {
     var target = new MockExceptionDictionary();
     target.Clear();
 }