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