public void InsertShouldWork() { var Arr = new int[4] { 1, 2, 5, 8 }; HW.InsertAt(ref Arr, 69, 2); Arr.Should().HaveElementAt(2, 69); }