Ejemplo n.º 1
0
        public void clearTest()
        {
            SeqStack <string> seqStack = new SeqStack <string>(10);

            seqStack.push("A");
            seqStack.push("B");
            seqStack.push("C");
            seqStack.clear();
            Assert.AreEqual(seqStack.isEmpty, true);
        }