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