public void BubbleSort_Test(int[] array, int[] destination) { Sorts.Bubble(ref array); Assert.IsTrue(IsArrayEqual(array, destination)); }