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