public void CanInsertionSort <TIn>(TIn[] input, TIn[] expected) where TIn : IComparable <TIn> { MyInsertionSort.Sort(input); Assert.Equal(expected, input); }