public void isEmptyTest()
 {
     Assert.IsTrue(intStack.IsEmpty());
     intStack.Push(2);
     Assert.IsFalse(intStack.IsEmpty());
 }
 public void MyStackTest()
 {
     this.intStack = new MyStack <int>();
     Assert.IsTrue(intStack is MyStack <int>);
     Assert.IsTrue(intStack.IsEmpty());
 }