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