public void TestPush05()
 {
     Stack stack;
     stack = new Stack();
     stack.SetNotNull();
     stack.Push();
     this.TestPush(stack);
     Assert.IsNotNull((object)stack);
 }
        public void TestPush05()
        {
            Stack stack;

            stack = new Stack();
            stack.SetNotNull();
            stack.Push();
            this.TestPush(stack);
            Assert.IsNotNull((object)stack);
        }
Exemple #3
0
 public void TestSetNotNull([PexAssumeUnderTest] Stack target)
 {
     target.SetNotNull();
 }