public void TwoElementsOnStack() { _stack.PushValue(2); _stack.PushValue(3); Assert.AreEqual(3, _stack.Pop()); Assert.AreEqual(2, _stack.Pop()); }