Beispiel #1
0
        public void Peek_Element()
        {
            StackImplementation <int> stack = new StackImplementation <int>(3);

            stack.Push(1);
            stack.Push(2);
            stack.Push(3);
            int val = stack.Peek();

            Assert.AreEqual(3, val);
            Assert.AreEqual(3, stack.Size);
        }
Beispiel #2
0
        public void Run()
        {
            StackImplementation <int> si = new StackImplementation <int>();

            si.Push(1);
            si.Push(2);
            si.Push(3);
            si.Push(4);
            Console.WriteLine("Size of the stack: {0}", si.Count);
            Console.WriteLine("Removing the top item from the stack: {0}", si.Pop());
            Console.WriteLine("Size of the stack: {0}", si.Count);
            Console.WriteLine("Value of the top item from the stack: {0}", si.Peek());
        }
Beispiel #3
0
        public void Exception_On_Peek()
        {
            StackImplementation <int> stack = new StackImplementation <int>(3);

            Assert.Throws <ExpenditureProhibitedException>(() => stack.Peek());
        }