public void DeletedValueShouldBeRplacedByNew() => Assert.IsTrue(StackTest.DeletedValueShouldBeRplacedByNew(stack));
public void EmptySatckIsEmptyShouldBeTrue() => Assert.IsTrue(StackTest.EmptyStackIsEmptyShouldBeTrue(stack));
public void PopAfterPushWillReturnLastPushedValue() => Assert.IsTrue(StackTest.PopAfterPushWillReturnLastPushedValue(stack));
public void PushIntoEmptyStackTest() => Assert.IsTrue(StackTest.PushTest(stack));