Exemplo n.º 1
0
        public void ValidatesIsEmptyFollowedByTop()
        {
            IStack <int> intStack = new SampleStack <int>();

            intStack.Push(1);
            Console.Write(intStack.Top());
            Assert.False(intStack.IsEmpty());
        }
Exemplo n.º 2
0
        public void ValidatesizeAfterPop()
        {
            IStack <int> intStack = new SampleStack <int>();

            intStack.Push(1);
            intStack.Pop();
            Assert.True(intStack.IsEmpty());
            Assert.AreEqual(0, intStack.Size());
        }