Beispiel #1
0
 public static SystemGenerics.Dictionary <TKey, TValue> Create(
     SystemGenerics.IDictionary <TKey, TValue> dictionary,
     SystemGenerics.IEqualityComparer <TKey> comparer) =>
 new Mock(dictionary, comparer);
Beispiel #2
0
 internal Mock(SystemGenerics.IDictionary <TKey, TValue> dictionary)
     : base(dictionary) => this.Setup();
Beispiel #3
0
 internal Mock(SystemGenerics.IDictionary <TKey, TValue> dictionary,
               SystemGenerics.IEqualityComparer <TKey> comparer)
     : base(dictionary, comparer) => this.Setup();
Beispiel #4
0
 public static SystemGenerics.Dictionary <TKey, TValue> Create(
     SystemGenerics.IDictionary <TKey, TValue> dictionary) =>
 new Mock(dictionary);