Esempio n. 1
0
        public void Pop_EmptyStack_ThrowsException()
        {
            var stack = new NodeStack <int>();

            Assert.Throws <InvalidOperationException>(() =>
            {
                stack.Pop();
            });
        }
Esempio n. 2
0
        public void Peek_PushTwoItemAndPop_ReturnsHeadElement()
        {
            var stack = new NodeStack <int>();

            stack.Push(1);
            stack.Push(2);

            stack.Pop();

            Assert.AreEqual(1, stack.Peek());
        }