public void Enumeration_ThrowsException_IfAddingElement() { Assert.Throws <InvalidOperationException>(() => { foreach (var _ in _three) { _three.Add(4); } }); }
public void Add_AddsNewElement_ToEmptyHeap() { _empty.Add(1); Assert.IsTrue(_empty.Contains(1)); }