public void AddValueTest() { list.AddValue(0, 0); list.AddValue(1, 1); Assert.Throws <AddingExistingElementException>(() => list.AddValue(1, 1)); }