Example #1
0
 public void TestToolkitPop()
 {
     System.Collections.Generic.List <int> intList = new System.Collections.Generic.List <int>()
     {
         4, 6, 8, 10, 12
     };
     Assert.AreEqual(5, intList.Count);
     Assert.AreEqual(12, intList.Pop());
     Assert.AreEqual(4, intList.Count);
 }