public void TestRotateArray2() { var arr = new[] { 1, 2, 3, 4, 5 }; RotateArray.Change(arr, 2); Assert.AreEqual(string.Join("", arr), "45123"); }