Example #1
0
 public void DeletedValueShouldBeRplacedByNew()
 => Assert.IsTrue(StackTest.DeletedValueShouldBeRplacedByNew(stack));
Example #2
0
 public void EmptySatckIsEmptyShouldBeTrue()
 => Assert.IsTrue(StackTest.EmptyStackIsEmptyShouldBeTrue(stack));
Example #3
0
 public void PopAfterPushWillReturnLastPushedValue()
 => Assert.IsTrue(StackTest.PopAfterPushWillReturnLastPushedValue(stack));
Example #4
0
 public void PushIntoEmptyStackTest()
 => Assert.IsTrue(StackTest.PushTest(stack));