public void popTest() { SeqStack <string> seqStack = new SeqStack <string>(10); seqStack.push("A"); seqStack.push("B"); seqStack.push("C"); seqStack.pop(); Assert.AreEqual(seqStack.getTop(), "B"); }