public void IsEmpty_EmptyStack_ReturnsTrue() { var stack = new ArrayStack <int>(); Assert.IsTrue(stack.IsEmpty); }