public void TestCount() { StackOfInt SOI = new StackOfInt(); SOI.Push(1); SOI.Push(11); SOI.Push(21); Assert.AreEqual(3, SOI.Count()); }