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); }