Exemplo n.º 1
0
 public void ThrowArgumentException_AfterInitializeWithNegativeValueCapacity()
 {
     Assert.Throws <ArgumentException>(() => hashTable = new EHashMap <int, string>(-1));
 }
Exemplo n.º 2
0
 public void SetUp()
 {
     hashTable = new EHashMap <int, string>();
 }