public void RemoveStartShouldWork() { var Arr = new int[4] { 1, 2, 5, 8 }; HW.RemoveStart(ref Arr); Arr.Should().BeEquivalentTo(new int[] { 2, 5, 8 }); }