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