Ejemplo n.º 1
0
 public void Pop2()
 {
     ListStack myList = new ListStack();
     myList.Push(123);
     myList.Push(321);
     myList.Push(132);
     Assert.AreEqual(132, myList.Pop());
     Assert.AreEqual(321, myList.Pop());
     Assert.AreEqual(123, myList.Pop());
 }
Ejemplo n.º 2
0
 public void LastTest()
 {
     ListStack myList = new ListStack();
     myList.Push(0);
     myList.Push(1);
     Assert.AreEqual(1, myList.Pop());
     myList.Push(2);
     myList.Push(3);
     myList.Push(2);
     Assert.AreEqual(2, myList.Pop());
     Assert.AreEqual(3, myList.Pop());
     Assert.AreEqual(2, myList.Pop());
     Assert.AreEqual(0, myList.Pop());
     Assert.AreEqual(true, myList.IsEmpty());
 }
Ejemplo n.º 3
0
 public void IsEmpty()
 {
     ListStack myList = new ListStack();
     myList.Push(123);
     myList.Pop();
     Assert.AreEqual(true, myList.IsEmpty());
     Assert.AreEqual(true, myList.IsEmpty());
 }
Ejemplo n.º 4
0
 public void Pop_UpperBorder()
 {
     ListStack myList = new ListStack();
     myList.Push(int.MaxValue);
     Assert.AreEqual(int.MaxValue, myList.Pop());
 }
Ejemplo n.º 5
0
 public void Pop()
 {
     ListStack myList = new ListStack();
     myList.Push(123456);
     Assert.AreEqual(123456, myList.Pop());
 }